| 2994 | // expression.cpp |
| 2995 | std::shared_ptr<compute::Expression> compute___expr__call(std::string func_name, cpp11::list argument_list, cpp11::list options); |
| 2996 | extern "C" SEXP _arrow_compute___expr__call(SEXP func_name_sexp, SEXP argument_list_sexp, SEXP options_sexp){ |
| 2997 | BEGIN_CPP11 |
| 2998 | arrow::r::Input<std::string>::type func_name(func_name_sexp); |
| 2999 | arrow::r::Input<cpp11::list>::type argument_list(argument_list_sexp); |
| 3000 | arrow::r::Input<cpp11::list>::type options(options_sexp); |
| 3001 | return cpp11::as_sexp(compute___expr__call(func_name, argument_list, options)); |
| 3002 | END_CPP11 |
| 3003 | } |
| 3004 | // expression.cpp |
| 3005 | bool compute___expr__is_field_ref(const std::shared_ptr<compute::Expression>& x); |
| 3006 | extern "C" SEXP _arrow_compute___expr__is_field_ref(SEXP x_sexp){ |
nothing calls this directly
no test coverage detected