| 5438 | // table.cpp |
| 5439 | std::vector<std::string> Table__ColumnNames(const std::shared_ptr<arrow::Table>& table); |
| 5440 | extern "C" SEXP _arrow_Table__ColumnNames(SEXP table_sexp){ |
| 5441 | BEGIN_CPP11 |
| 5442 | arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type table(table_sexp); |
| 5443 | return cpp11::as_sexp(Table__ColumnNames(table)); |
| 5444 | END_CPP11 |
| 5445 | } |
| 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){ |
nothing calls this directly
no test coverage detected