| 5137 | // safe-call-into-r-impl.cpp |
| 5138 | std::string TestSafeCallIntoR(cpp11::function r_fun_that_returns_a_string, std::string opt); |
| 5139 | extern "C" SEXP _arrow_TestSafeCallIntoR(SEXP r_fun_that_returns_a_string_sexp, SEXP opt_sexp){ |
| 5140 | BEGIN_CPP11 |
| 5141 | arrow::r::Input<cpp11::function>::type r_fun_that_returns_a_string(r_fun_that_returns_a_string_sexp); |
| 5142 | arrow::r::Input<std::string>::type opt(opt_sexp); |
| 5143 | return cpp11::as_sexp(TestSafeCallIntoR(r_fun_that_returns_a_string, opt)); |
| 5144 | END_CPP11 |
| 5145 | } |
| 5146 | // scalar.cpp |
| 5147 | std::shared_ptr<arrow::Scalar> Array__GetScalar(const std::shared_ptr<arrow::Array>& x, int64_t i); |
| 5148 | extern "C" SEXP _arrow_Array__GetScalar(SEXP x_sexp, SEXP i_sexp){ |
nothing calls this directly
no test coverage detected