| 4759 | // recordbatch.cpp |
| 4760 | cpp11::list RecordBatch__columns(const std::shared_ptr<arrow::RecordBatch>& batch); |
| 4761 | extern "C" SEXP _arrow_RecordBatch__columns(SEXP batch_sexp){ |
| 4762 | BEGIN_CPP11 |
| 4763 | arrow::r::Input<const std::shared_ptr<arrow::RecordBatch>&>::type batch(batch_sexp); |
| 4764 | return cpp11::as_sexp(RecordBatch__columns(batch)); |
| 4765 | END_CPP11 |
| 4766 | } |
| 4767 | // recordbatch.cpp |
| 4768 | std::shared_ptr<arrow::Array> RecordBatch__column(const std::shared_ptr<arrow::RecordBatch>& batch, int i); |
| 4769 | extern "C" SEXP _arrow_RecordBatch__column(SEXP batch_sexp, SEXP i_sexp){ |
nothing calls this directly
no test coverage detected