| 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){ |
| 1340 | BEGIN_CPP11 |
| 1341 | arrow::r::Input<std::string>::type func_name(func_name_sexp); |
| 1342 | arrow::r::Input<cpp11::list>::type args(args_sexp); |
| 1343 | arrow::r::Input<cpp11::list>::type options(options_sexp); |
| 1344 | return cpp11::as_sexp(compute__CallFunction(func_name, args, options)); |
| 1345 | END_CPP11 |
| 1346 | } |
| 1347 | // compute.cpp |
| 1348 | std::vector<std::string> compute__GetFunctionNames(); |
| 1349 | extern "C" SEXP _arrow_compute__GetFunctionNames(){ |
nothing calls this directly
no test coverage detected