| 5481 | // table.cpp |
| 5482 | std::vector<std::string> Table__ColumnNames(const std::shared_ptr<arrow::Table>& table); |
| 5483 | extern "C" SEXP _arrow_Table__ColumnNames(SEXP table_sexp){ |
| 5484 | BEGIN_CPP11 |
| 5485 | arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type table(table_sexp); |
| 5486 | return cpp11::as_sexp(Table__ColumnNames(table)); |
| 5487 | END_CPP11 |
| 5488 | } |
| 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){ |
nothing calls this directly
no test coverage detected