| 34 | // altrep.cpp |
| 35 | bool test_arrow_altrep_force_materialize(sexp x); |
| 36 | extern "C" SEXP _arrow_test_arrow_altrep_force_materialize(SEXP x_sexp){ |
| 37 | BEGIN_CPP11 |
| 38 | arrow::r::Input<sexp>::type x(x_sexp); |
| 39 | return cpp11::as_sexp(test_arrow_altrep_force_materialize(x)); |
| 40 | END_CPP11 |
| 41 | } |
| 42 | // altrep.cpp |
| 43 | sexp test_arrow_altrep_copy_by_element(sexp x); |
| 44 | extern "C" SEXP _arrow_test_arrow_altrep_copy_by_element(SEXP x_sexp){ |
nothing calls this directly
no test coverage detected