| 469 | // arraydata.cpp |
| 470 | r_vec_size ArrayData__get_length(const std::shared_ptr<arrow::ArrayData>& x); |
| 471 | extern "C" SEXP _arrow_ArrayData__get_length(SEXP x_sexp){ |
| 472 | BEGIN_CPP11 |
| 473 | arrow::r::Input<const std::shared_ptr<arrow::ArrayData>&>::type x(x_sexp); |
| 474 | return cpp11::as_sexp(ArrayData__get_length(x)); |
| 475 | END_CPP11 |
| 476 | } |
| 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){ |
nothing calls this directly
no test coverage detected