| 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){ |
| 496 | BEGIN_CPP11 |
| 497 | arrow::r::Input<const std::shared_ptr<arrow::ArrayData>&>::type x(x_sexp); |
| 498 | return cpp11::as_sexp(ArrayData__buffers(x)); |
| 499 | END_CPP11 |
| 500 | } |
| 501 | // bridge.cpp |
| 502 | double external_pointer_addr_double(SEXP external_pointer); |
| 503 | extern "C" SEXP _arrow_external_pointer_addr_double(SEXP external_pointer_sexp){ |
nothing calls this directly
no test coverage detected