MCPcopy Create free account
hub / github.com/apache/arrow / _arrow_test_arrow_altrep_set_string_elt

Function _arrow_test_arrow_altrep_set_string_elt

r/src/arrowExports.cpp:17–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15// altrep.cpp
16void test_arrow_altrep_set_string_elt(sexp x, int i, std::string value);
17extern "C" SEXP _arrow_test_arrow_altrep_set_string_elt(SEXP x_sexp, SEXP i_sexp, SEXP value_sexp){
18BEGIN_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;
24END_CPP11
25}
26// altrep.cpp
27sexp test_arrow_altrep_is_materialized(sexp x);
28extern "C" SEXP _arrow_test_arrow_altrep_is_materialized(SEXP x_sexp){

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected