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

Function _arrow_Schema__WithNames

r/src/arrowExports.cpp:5389–5395  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5387// schema.cpp
5388std::shared_ptr<arrow::Schema> Schema__WithNames(const std::shared_ptr<arrow::Schema>& schema, const std::vector<std::string>& names);
5389extern "C" SEXP _arrow_Schema__WithNames(SEXP schema_sexp, SEXP names_sexp){
5390BEGIN_CPP11
5391 arrow::r::Input<const std::shared_ptr<arrow::Schema>&>::type schema(schema_sexp);
5392 arrow::r::Input<const std::vector<std::string>&>::type names(names_sexp);
5393 return cpp11::as_sexp(Schema__WithNames(schema, names));
5394END_CPP11
5395}
5396// schema.cpp
5397cpp11::writable::raws Schema__serialize(const std::shared_ptr<arrow::Schema>& schema);
5398extern "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