| 4869 | // recordbatch.cpp |
| 4870 | std::shared_ptr<arrow::RecordBatch> RecordBatch__RemoveColumn(const std::shared_ptr<arrow::RecordBatch>& batch, int i); |
| 4871 | extern "C" SEXP _arrow_RecordBatch__RemoveColumn(SEXP batch_sexp, SEXP i_sexp){ |
| 4872 | BEGIN_CPP11 |
| 4873 | arrow::r::Input<const std::shared_ptr<arrow::RecordBatch>&>::type batch(batch_sexp); |
| 4874 | arrow::r::Input<int>::type i(i_sexp); |
| 4875 | return cpp11::as_sexp(RecordBatch__RemoveColumn(batch, i)); |
| 4876 | END_CPP11 |
| 4877 | } |
| 4878 | // recordbatch.cpp |
| 4879 | std::string RecordBatch__column_name(const std::shared_ptr<arrow::RecordBatch>& batch, int i); |
| 4880 | extern "C" SEXP _arrow_RecordBatch__column_name(SEXP batch_sexp, SEXP i_sexp){ |
nothing calls this directly
no test coverage detected