[[arrow::export]]
| 610 | |
| 611 | // [[arrow::export]] |
| 612 | SEXP 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]] |
| 621 | std::vector<std::string> compute__GetFunctionNames() { |
no test coverage detected