| 784 | // chunkedarray.cpp |
| 785 | cpp11::list ChunkedArray__chunks(const std::shared_ptr<arrow::ChunkedArray>& chunked_array); |
| 786 | extern "C" SEXP _arrow_ChunkedArray__chunks(SEXP chunked_array_sexp){ |
| 787 | BEGIN_CPP11 |
| 788 | arrow::r::Input<const std::shared_ptr<arrow::ChunkedArray>&>::type chunked_array(chunked_array_sexp); |
| 789 | return cpp11::as_sexp(ChunkedArray__chunks(chunked_array)); |
| 790 | END_CPP11 |
| 791 | } |
| 792 | // chunkedarray.cpp |
| 793 | std::shared_ptr<arrow::DataType> ChunkedArray__type(const std::shared_ptr<arrow::ChunkedArray>& chunked_array); |
| 794 | extern "C" SEXP _arrow_ChunkedArray__type(SEXP chunked_array_sexp){ |
nothing calls this directly
no test coverage detected