| 819 | // chunkedarray.cpp |
| 820 | std::shared_ptr<arrow::ChunkedArray> ChunkedArray__View(const std::shared_ptr<arrow::ChunkedArray>& array, const std::shared_ptr<arrow::DataType>& type); |
| 821 | extern "C" SEXP _arrow_ChunkedArray__View(SEXP array_sexp, SEXP type_sexp){ |
| 822 | BEGIN_CPP11 |
| 823 | arrow::r::Input<const std::shared_ptr<arrow::ChunkedArray>&>::type array(array_sexp); |
| 824 | arrow::r::Input<const std::shared_ptr<arrow::DataType>&>::type type(type_sexp); |
| 825 | return cpp11::as_sexp(ChunkedArray__View(array, type)); |
| 826 | END_CPP11 |
| 827 | } |
| 828 | // chunkedarray.cpp |
| 829 | void ChunkedArray__Validate(const std::shared_ptr<arrow::ChunkedArray>& chunked_array); |
| 830 | extern "C" SEXP _arrow_ChunkedArray__Validate(SEXP chunked_array_sexp){ |
nothing calls this directly
no test coverage detected