| 5446 | // table.cpp |
| 5447 | std::shared_ptr<arrow::Table> Table__RenameColumns(const std::shared_ptr<arrow::Table>& table, const std::vector<std::string>& names); |
| 5448 | extern "C" SEXP _arrow_Table__RenameColumns(SEXP table_sexp, SEXP names_sexp){ |
| 5449 | BEGIN_CPP11 |
| 5450 | arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type table(table_sexp); |
| 5451 | arrow::r::Input<const std::vector<std::string>&>::type names(names_sexp); |
| 5452 | return cpp11::as_sexp(Table__RenameColumns(table, names)); |
| 5453 | END_CPP11 |
| 5454 | } |
| 5455 | // table.cpp |
| 5456 | std::shared_ptr<arrow::Table> Table__Slice1(const std::shared_ptr<arrow::Table>& table, R_xlen_t offset); |
| 5457 | extern "C" SEXP _arrow_Table__Slice1(SEXP table_sexp, SEXP offset_sexp){ |
nothing calls this directly
no test coverage detected