| 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){ |
| 53 | BEGIN_CPP11 |
| 54 | arrow::r::Input<sexp>::type x(x_sexp); |
| 55 | arrow::r::Input<R_xlen_t>::type region_size(region_size_sexp); |
| 56 | return cpp11::as_sexp(test_arrow_altrep_copy_by_region(x, region_size)); |
| 57 | END_CPP11 |
| 58 | } |
| 59 | // altrep.cpp |
| 60 | sexp test_arrow_altrep_copy_by_dataptr(sexp x); |
| 61 | extern "C" SEXP _arrow_test_arrow_altrep_copy_by_dataptr(SEXP x_sexp){ |
nothing calls this directly
no test coverage detected