| 5180 | // safe-call-into-r-impl.cpp |
| 5181 | std::string TestSafeCallIntoR(cpp11::function r_fun_that_returns_a_string, std::string opt); |
| 5182 | extern "C" SEXP _arrow_TestSafeCallIntoR(SEXP r_fun_that_returns_a_string_sexp, SEXP opt_sexp){ |
| 5183 | BEGIN_CPP11 |
| 5184 | arrow::r::Input<cpp11::function>::type r_fun_that_returns_a_string(r_fun_that_returns_a_string_sexp); |
| 5185 | arrow::r::Input<std::string>::type opt(opt_sexp); |
| 5186 | return cpp11::as_sexp(TestSafeCallIntoR(r_fun_that_returns_a_string, opt)); |
| 5187 | END_CPP11 |
| 5188 | } |
| 5189 | // scalar.cpp |
| 5190 | std::shared_ptr<arrow::Scalar> Array__GetScalar(const std::shared_ptr<arrow::Array>& x, int64_t i); |
| 5191 | extern "C" SEXP _arrow_Array__GetScalar(SEXP x_sexp, SEXP i_sexp){ |
nothing calls this directly
no test coverage detected