| 5552 | // table.cpp |
| 5553 | std::shared_ptr<arrow::Table> Table__RemoveColumn(const std::shared_ptr<arrow::Table>& table, int i); |
| 5554 | extern "C" SEXP _arrow_Table__RemoveColumn(SEXP table_sexp, SEXP i_sexp){ |
| 5555 | BEGIN_CPP11 |
| 5556 | arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type table(table_sexp); |
| 5557 | arrow::r::Input<int>::type i(i_sexp); |
| 5558 | return cpp11::as_sexp(Table__RemoveColumn(table, i)); |
| 5559 | END_CPP11 |
| 5560 | } |
| 5561 | // table.cpp |
| 5562 | std::shared_ptr<arrow::Table> Table__AddColumn(const std::shared_ptr<arrow::Table>& table, int i, const std::shared_ptr<arrow::Field>& field, const std::shared_ptr<arrow::ChunkedArray>& column); |
| 5563 | extern "C" SEXP _arrow_Table__AddColumn(SEXP table_sexp, SEXP i_sexp, SEXP field_sexp, SEXP column_sexp){ |
nothing calls this directly
no test coverage detected