| 426 | // array_to_vector.cpp |
| 427 | SEXP Array__as_vector(const std::shared_ptr<arrow::Array>& array); |
| 428 | extern "C" SEXP _arrow_Array__as_vector(SEXP array_sexp){ |
| 429 | BEGIN_CPP11 |
| 430 | arrow::r::Input<const std::shared_ptr<arrow::Array>&>::type array(array_sexp); |
| 431 | return cpp11::as_sexp(Array__as_vector(array)); |
| 432 | END_CPP11 |
| 433 | } |
| 434 | // array_to_vector.cpp |
| 435 | SEXP ChunkedArray__as_vector(const std::shared_ptr<arrow::ChunkedArray>& chunked_array, bool use_threads); |
| 436 | extern "C" SEXP _arrow_ChunkedArray__as_vector(SEXP chunked_array_sexp, SEXP use_threads_sexp){ |
nothing calls this directly
no test coverage detected