| 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){ |
| 488 | BEGIN_CPP11 |
| 489 | arrow::r::Input<const std::shared_ptr<arrow::ArrayData>&>::type x(x_sexp); |
| 490 | return cpp11::as_sexp(ArrayData__get_offset(x)); |
| 491 | END_CPP11 |
| 492 | } |
| 493 | // arraydata.cpp |
| 494 | cpp11::list ArrayData__buffers(const std::shared_ptr<arrow::ArrayData>& x); |
| 495 | extern "C" SEXP _arrow_ArrayData__buffers(SEXP x_sexp){ |
nothing calls this directly
no test coverage detected