| 5430 | // table.cpp |
| 5431 | cpp11::list Table__columns(const std::shared_ptr<arrow::Table>& table); |
| 5432 | extern "C" SEXP _arrow_Table__columns(SEXP table_sexp){ |
| 5433 | BEGIN_CPP11 |
| 5434 | arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type table(table_sexp); |
| 5435 | return cpp11::as_sexp(Table__columns(table)); |
| 5436 | END_CPP11 |
| 5437 | } |
| 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){ |
nothing calls this directly
no test coverage detected