| 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){ |
| 62 | BEGIN_CPP11 |
| 63 | arrow::r::Input<sexp>::type x(x_sexp); |
| 64 | return cpp11::as_sexp(test_arrow_altrep_copy_by_dataptr(x)); |
| 65 | END_CPP11 |
| 66 | } |
| 67 | // array.cpp |
| 68 | std::shared_ptr<arrow::Array> Array__Slice1(const std::shared_ptr<arrow::Array>& array, R_xlen_t offset); |
| 69 | extern "C" SEXP _arrow_Array__Slice1(SEXP array_sexp, SEXP offset_sexp){ |
nothing calls this directly
no test coverage detected