| 2985 | // expression.cpp |
| 2986 | std::shared_ptr<compute::Expression> compute___expr__call(std::string func_name, cpp11::list argument_list, cpp11::list options); |
| 2987 | extern "C" SEXP _arrow_compute___expr__call(SEXP func_name_sexp, SEXP argument_list_sexp, SEXP options_sexp){ |
| 2988 | BEGIN_CPP11 |
| 2989 | arrow::r::Input<std::string>::type func_name(func_name_sexp); |
| 2990 | arrow::r::Input<cpp11::list>::type argument_list(argument_list_sexp); |
| 2991 | arrow::r::Input<cpp11::list>::type options(options_sexp); |
| 2992 | return cpp11::as_sexp(compute___expr__call(func_name, argument_list, options)); |
| 2993 | END_CPP11 |
| 2994 | } |
| 2995 | // expression.cpp |
| 2996 | bool compute___expr__is_field_ref(const std::shared_ptr<compute::Expression>& x); |
| 2997 | extern "C" SEXP _arrow_compute___expr__is_field_ref(SEXP x_sexp){ |
nothing calls this directly
no test coverage detected