| 4785 | // recordbatch.cpp |
| 4786 | std::shared_ptr<arrow::RecordBatch> RecordBatch__SelectColumns(const std::shared_ptr<arrow::RecordBatch>& batch, const std::vector<int>& indices); |
| 4787 | extern "C" SEXP _arrow_RecordBatch__SelectColumns(SEXP batch_sexp, SEXP indices_sexp){ |
| 4788 | BEGIN_CPP11 |
| 4789 | arrow::r::Input<const std::shared_ptr<arrow::RecordBatch>&>::type batch(batch_sexp); |
| 4790 | arrow::r::Input<const std::vector<int>&>::type indices(indices_sexp); |
| 4791 | return cpp11::as_sexp(RecordBatch__SelectColumns(batch, indices)); |
| 4792 | END_CPP11 |
| 4793 | } |
| 4794 | // recordbatch.cpp |
| 4795 | bool RecordBatch__Equals(const std::shared_ptr<arrow::RecordBatch>& self, const std::shared_ptr<arrow::RecordBatch>& other, bool check_metadata); |
| 4796 | extern "C" SEXP _arrow_RecordBatch__Equals(SEXP self_sexp, SEXP other_sexp, SEXP check_metadata_sexp){ |
nothing calls this directly
no test coverage detected