| 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){ |
| 45 | BEGIN_CPP11 |
| 46 | arrow::r::Input<sexp>::type x(x_sexp); |
| 47 | return cpp11::as_sexp(test_arrow_altrep_copy_by_element(x)); |
| 48 | END_CPP11 |
| 49 | } |
| 50 | // altrep.cpp |
| 51 | sexp test_arrow_altrep_copy_by_region(sexp x, R_xlen_t region_size); |
| 52 | extern "C" SEXP _arrow_test_arrow_altrep_copy_by_region(SEXP x_sexp, SEXP region_size_sexp){ |
nothing calls this directly
no test coverage detected