MCPcopy Create free account
hub / github.com/apache/arrow / _arrow_Schema__WithNames

Function _arrow_Schema__WithNames

r/src/arrowExports.cpp:5346–5352  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5344// schema.cpp
5345std::shared_ptr<arrow::Schema> Schema__WithNames(const std::shared_ptr<arrow::Schema>& schema, const std::vector<std::string>& names);
5346extern "C" SEXP _arrow_Schema__WithNames(SEXP schema_sexp, SEXP names_sexp){
5347BEGIN_CPP11
5348 arrow::r::Input<const std::shared_ptr<arrow::Schema>&>::type schema(schema_sexp);
5349 arrow::r::Input<const std::vector<std::string>&>::type names(names_sexp);
5350 return cpp11::as_sexp(Schema__WithNames(schema, names));
5351END_CPP11
5352}
5353// schema.cpp
5354cpp11::writable::raws Schema__serialize(const std::shared_ptr<arrow::Schema>& schema);
5355extern "C" SEXP _arrow_Schema__serialize(SEXP schema_sexp){

Callers

nothing calls this directly

Calls 2

as_sexpFunction · 0.85
Schema__WithNamesFunction · 0.85

Tested by

no test coverage detected