| 4802 | // recordbatch.cpp |
| 4803 | cpp11::list RecordBatch__columns(const std::shared_ptr<arrow::RecordBatch>& batch); |
| 4804 | extern "C" SEXP _arrow_RecordBatch__columns(SEXP batch_sexp){ |
| 4805 | BEGIN_CPP11 |
| 4806 | arrow::r::Input<const std::shared_ptr<arrow::RecordBatch>&>::type batch(batch_sexp); |
| 4807 | return cpp11::as_sexp(RecordBatch__columns(batch)); |
| 4808 | END_CPP11 |
| 4809 | } |
| 4810 | // recordbatch.cpp |
| 4811 | std::shared_ptr<arrow::Array> RecordBatch__column(const std::shared_ptr<arrow::RecordBatch>& batch, int i); |
| 4812 | extern "C" SEXP _arrow_RecordBatch__column(SEXP batch_sexp, SEXP i_sexp){ |
nothing calls this directly
no test coverage detected