| 410 | // array.cpp |
| 411 | r_vec_size Array__ReferencedBufferSize(const std::shared_ptr<arrow::Array>& x); |
| 412 | extern "C" SEXP _arrow_Array__ReferencedBufferSize(SEXP x_sexp){ |
| 413 | BEGIN_CPP11 |
| 414 | arrow::r::Input<const std::shared_ptr<arrow::Array>&>::type x(x_sexp); |
| 415 | return cpp11::as_sexp(Array__ReferencedBufferSize(x)); |
| 416 | END_CPP11 |
| 417 | } |
| 418 | // array.cpp |
| 419 | std::shared_ptr<arrow::Array> arrow__Concatenate(cpp11::list dots); |
| 420 | extern "C" SEXP _arrow_arrow__Concatenate(SEXP dots_sexp){ |
nothing calls this directly
no test coverage detected