| 5583 | // table.cpp |
| 5584 | std::shared_ptr<arrow::Table> Table__SelectColumns(const std::shared_ptr<arrow::Table>& table, const std::vector<int>& indices); |
| 5585 | extern "C" SEXP _arrow_Table__SelectColumns(SEXP table_sexp, SEXP indices_sexp){ |
| 5586 | BEGIN_CPP11 |
| 5587 | arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type table(table_sexp); |
| 5588 | arrow::r::Input<const std::vector<int>&>::type indices(indices_sexp); |
| 5589 | return cpp11::as_sexp(Table__SelectColumns(table, indices)); |
| 5590 | END_CPP11 |
| 5591 | } |
| 5592 | // table.cpp |
| 5593 | bool all_record_batches(SEXP lst); |
| 5594 | extern "C" SEXP _arrow_all_record_batches(SEXP lst_sexp){ |
nothing calls this directly
no test coverage detected