| 5473 | // table.cpp |
| 5474 | cpp11::list Table__columns(const std::shared_ptr<arrow::Table>& table); |
| 5475 | extern "C" SEXP _arrow_Table__columns(SEXP table_sexp){ |
| 5476 | BEGIN_CPP11 |
| 5477 | arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type table(table_sexp); |
| 5478 | return cpp11::as_sexp(Table__columns(table)); |
| 5479 | END_CPP11 |
| 5480 | } |
| 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){ |
nothing calls this directly
no test coverage detected