| 4828 | // recordbatch.cpp |
| 4829 | std::shared_ptr<arrow::RecordBatch> RecordBatch__SelectColumns(const std::shared_ptr<arrow::RecordBatch>& batch, const std::vector<int>& indices); |
| 4830 | extern "C" SEXP _arrow_RecordBatch__SelectColumns(SEXP batch_sexp, SEXP indices_sexp){ |
| 4831 | BEGIN_CPP11 |
| 4832 | arrow::r::Input<const std::shared_ptr<arrow::RecordBatch>&>::type batch(batch_sexp); |
| 4833 | arrow::r::Input<const std::vector<int>&>::type indices(indices_sexp); |
| 4834 | return cpp11::as_sexp(RecordBatch__SelectColumns(batch, indices)); |
| 4835 | END_CPP11 |
| 4836 | } |
| 4837 | // recordbatch.cpp |
| 4838 | bool RecordBatch__Equals(const std::shared_ptr<arrow::RecordBatch>& self, const std::shared_ptr<arrow::RecordBatch>& other, bool check_metadata); |
| 4839 | extern "C" SEXP _arrow_RecordBatch__Equals(SEXP self_sexp, SEXP other_sexp, SEXP check_metadata_sexp){ |
nothing calls this directly
no test coverage detected