| 5540 | // table.cpp |
| 5541 | std::shared_ptr<arrow::Table> Table__SelectColumns(const std::shared_ptr<arrow::Table>& table, const std::vector<int>& indices); |
| 5542 | extern "C" SEXP _arrow_Table__SelectColumns(SEXP table_sexp, SEXP indices_sexp){ |
| 5543 | BEGIN_CPP11 |
| 5544 | arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type table(table_sexp); |
| 5545 | arrow::r::Input<const std::vector<int>&>::type indices(indices_sexp); |
| 5546 | return cpp11::as_sexp(Table__SelectColumns(table, indices)); |
| 5547 | END_CPP11 |
| 5548 | } |
| 5549 | // table.cpp |
| 5550 | bool all_record_batches(SEXP lst); |
| 5551 | extern "C" SEXP _arrow_all_record_batches(SEXP lst_sexp){ |
nothing calls this directly
no test coverage detected