| 863 | // chunkedarray.cpp |
| 864 | r_vec_size ChunkedArray__ReferencedBufferSize(const std::shared_ptr<arrow::ChunkedArray>& chunked_array); |
| 865 | extern "C" SEXP _arrow_ChunkedArray__ReferencedBufferSize(SEXP chunked_array_sexp){ |
| 866 | BEGIN_CPP11 |
| 867 | arrow::r::Input<const std::shared_ptr<arrow::ChunkedArray>&>::type chunked_array(chunked_array_sexp); |
| 868 | return cpp11::as_sexp(ChunkedArray__ReferencedBufferSize(chunked_array)); |
| 869 | END_CPP11 |
| 870 | } |
| 871 | // compression.cpp |
| 872 | std::shared_ptr<arrow::util::Codec> util___Codec__Create(arrow::Compression::type codec, int compression_level); |
| 873 | extern "C" SEXP _arrow_util___Codec__Create(SEXP codec_sexp, SEXP compression_level_sexp){ |
nothing calls this directly
no test coverage detected