| 1327 | // compute.cpp |
| 1328 | std::shared_ptr<arrow::Table> Table__cast(const std::shared_ptr<arrow::Table>& table, const std::shared_ptr<arrow::Schema>& schema, cpp11::list options); |
| 1329 | extern "C" SEXP _arrow_Table__cast(SEXP table_sexp, SEXP schema_sexp, SEXP options_sexp){ |
| 1330 | BEGIN_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)); |
| 1335 | END_CPP11 |
| 1336 | } |
| 1337 | // compute.cpp |
| 1338 | SEXP compute__CallFunction(std::string func_name, cpp11::list args, cpp11::list options); |
| 1339 | extern "C" SEXP _arrow_compute__CallFunction(SEXP func_name_sexp, SEXP args_sexp, SEXP options_sexp){ |
nothing calls this directly
no test coverage detected