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

Function _arrow_compute__CallFunction

r/src/arrowExports.cpp:1339–1346  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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){
1340BEGIN_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));
1345END_CPP11
1346}
1347// compute.cpp
1348std::vector<std::string> compute__GetFunctionNames();
1349extern "C" SEXP _arrow_compute__GetFunctionNames(){

Callers

nothing calls this directly

Calls 2

as_sexpFunction · 0.85
compute__CallFunctionFunction · 0.85

Tested by

no test coverage detected