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

Function _arrow_compute___expr__call

r/src/arrowExports.cpp:2996–3003  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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