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

Function _arrow_compute___expr__call

r/src/arrowExports.cpp:2987–2994  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2985// expression.cpp
2986std::shared_ptr<compute::Expression> compute___expr__call(std::string func_name, cpp11::list argument_list, cpp11::list options);
2987extern "C" SEXP _arrow_compute___expr__call(SEXP func_name_sexp, SEXP argument_list_sexp, SEXP options_sexp){
2988BEGIN_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));
2993END_CPP11
2994}
2995// expression.cpp
2996bool compute___expr__is_field_ref(const std::shared_ptr<compute::Expression>& x);
2997extern "C" SEXP _arrow_compute___expr__is_field_ref(SEXP x_sexp){

Callers

nothing calls this directly

Calls 2

as_sexpFunction · 0.85
compute___expr__callFunction · 0.85

Tested by

no test coverage detected