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

Function _arrow_Table__cast

r/src/arrowExports.cpp:1329–1336  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1327// compute.cpp
1328std::shared_ptr<arrow::Table> Table__cast(const std::shared_ptr<arrow::Table>& table, const std::shared_ptr<arrow::Schema>& schema, cpp11::list options);
1329extern "C" SEXP _arrow_Table__cast(SEXP table_sexp, SEXP schema_sexp, SEXP options_sexp){
1330BEGIN_CPP11
1331 arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type table(table_sexp);
1332 arrow::r::Input<const std::shared_ptr<arrow::Schema>&>::type schema(schema_sexp);
1333 arrow::r::Input<cpp11::list>::type options(options_sexp);
1334 return cpp11::as_sexp(Table__cast(table, schema, options));
1335END_CPP11
1336}
1337// compute.cpp
1338SEXP compute__CallFunction(std::string func_name, cpp11::list args, cpp11::list options);
1339extern "C" SEXP _arrow_compute__CallFunction(SEXP func_name_sexp, SEXP args_sexp, SEXP options_sexp){

Callers

nothing calls this directly

Calls 2

as_sexpFunction · 0.85
Table__castFunction · 0.85

Tested by

no test coverage detected