| 7 | // altrep.cpp |
| 8 | bool is_arrow_altrep(cpp11::sexp x); |
| 9 | extern "C" SEXP _arrow_is_arrow_altrep(SEXP x_sexp){ |
| 10 | BEGIN_CPP11 |
| 11 | arrow::r::Input<cpp11::sexp>::type x(x_sexp); |
| 12 | return cpp11::as_sexp(is_arrow_altrep(x)); |
| 13 | END_CPP11 |
| 14 | } |
| 15 | // altrep.cpp |
| 16 | void test_arrow_altrep_set_string_elt(sexp x, int i, std::string value); |
| 17 | extern "C" SEXP _arrow_test_arrow_altrep_set_string_elt(SEXP x_sexp, SEXP i_sexp, SEXP value_sexp){ |
nothing calls this directly
no test coverage detected