| 4826 | // recordbatch.cpp |
| 4827 | std::shared_ptr<arrow::RecordBatch> RecordBatch__RemoveColumn(const std::shared_ptr<arrow::RecordBatch>& batch, int i); |
| 4828 | extern "C" SEXP _arrow_RecordBatch__RemoveColumn(SEXP batch_sexp, SEXP i_sexp){ |
| 4829 | BEGIN_CPP11 |
| 4830 | arrow::r::Input<const std::shared_ptr<arrow::RecordBatch>&>::type batch(batch_sexp); |
| 4831 | arrow::r::Input<int>::type i(i_sexp); |
| 4832 | return cpp11::as_sexp(RecordBatch__RemoveColumn(batch, i)); |
| 4833 | END_CPP11 |
| 4834 | } |
| 4835 | // recordbatch.cpp |
| 4836 | std::string RecordBatch__column_name(const std::shared_ptr<arrow::RecordBatch>& batch, int i); |
| 4837 | extern "C" SEXP _arrow_RecordBatch__column_name(SEXP batch_sexp, SEXP i_sexp){ |
nothing calls this directly
no test coverage detected