| 15 | // altrep.cpp |
| 16 | void test_arrow_altrep_set_string_elt(sexp x, int i, std::string value); |
| 17 | extern "C" SEXP _arrow_test_arrow_altrep_set_string_elt(SEXP x_sexp, SEXP i_sexp, SEXP value_sexp){ |
| 18 | BEGIN_CPP11 |
| 19 | arrow::r::Input<sexp>::type x(x_sexp); |
| 20 | arrow::r::Input<int>::type i(i_sexp); |
| 21 | arrow::r::Input<std::string>::type value(value_sexp); |
| 22 | test_arrow_altrep_set_string_elt(x, i, value); |
| 23 | return R_NilValue; |
| 24 | END_CPP11 |
| 25 | } |
| 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){ |
nothing calls this directly
no test coverage detected