| 477 | // arraydata.cpp |
| 478 | r_vec_size ArrayData__get_null_count(const std::shared_ptr<arrow::ArrayData>& x); |
| 479 | extern "C" SEXP _arrow_ArrayData__get_null_count(SEXP x_sexp){ |
| 480 | BEGIN_CPP11 |
| 481 | arrow::r::Input<const std::shared_ptr<arrow::ArrayData>&>::type x(x_sexp); |
| 482 | return cpp11::as_sexp(ArrayData__get_null_count(x)); |
| 483 | END_CPP11 |
| 484 | } |
| 485 | // arraydata.cpp |
| 486 | r_vec_size ArrayData__get_offset(const std::shared_ptr<arrow::ArrayData>& x); |
| 487 | extern "C" SEXP _arrow_ArrayData__get_offset(SEXP x_sexp){ |
nothing calls this directly
no test coverage detected