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

Function compute__CallFunction

r/src/compute.cpp:612–618  ·  view source on GitHub ↗

[[arrow::export]]

Source from the content-addressed store, hash-verified

610
611// [[arrow::export]]
612SEXP compute__CallFunction(std::string func_name, cpp11::list args, cpp11::list options) {
613 auto opts = make_compute_options(func_name, options);
614 auto datum_args = arrow::r::from_r_list<arrow::Datum>(args);
615 auto out = ValueOrStop(
616 arrow::compute::CallFunction(func_name, datum_args, opts.get(), gc_context()));
617 return from_datum(std::move(out));
618}
619
620// [[arrow::export]]
621std::vector<std::string> compute__GetFunctionNames() {

Callers 1

Calls 6

make_compute_optionsFunction · 0.85
ValueOrStopFunction · 0.85
CallFunctionFunction · 0.85
gc_contextFunction · 0.85
from_datumFunction · 0.85
getMethod · 0.45

Tested by

no test coverage detected