| 26 | // altrep.cpp |
| 27 | sexp test_arrow_altrep_is_materialized(sexp x); |
| 28 | extern "C" SEXP _arrow_test_arrow_altrep_is_materialized(SEXP x_sexp){ |
| 29 | BEGIN_CPP11 |
| 30 | arrow::r::Input<sexp>::type x(x_sexp); |
| 31 | return cpp11::as_sexp(test_arrow_altrep_is_materialized(x)); |
| 32 | END_CPP11 |
| 33 | } |
| 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){ |
nothing calls this directly
no test coverage detected