| 5489 | // table.cpp |
| 5490 | std::shared_ptr<arrow::Table> Table__RenameColumns(const std::shared_ptr<arrow::Table>& table, const std::vector<std::string>& names); |
| 5491 | extern "C" SEXP _arrow_Table__RenameColumns(SEXP table_sexp, SEXP names_sexp){ |
| 5492 | BEGIN_CPP11 |
| 5493 | arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type table(table_sexp); |
| 5494 | arrow::r::Input<const std::vector<std::string>&>::type names(names_sexp); |
| 5495 | return cpp11::as_sexp(Table__RenameColumns(table, names)); |
| 5496 | END_CPP11 |
| 5497 | } |
| 5498 | // table.cpp |
| 5499 | std::shared_ptr<arrow::Table> Table__Slice1(const std::shared_ptr<arrow::Table>& table, R_xlen_t offset); |
| 5500 | extern "C" SEXP _arrow_Table__Slice1(SEXP table_sexp, SEXP offset_sexp){ |
nothing calls this directly
no test coverage detected