| 5446 | // table.cpp |
| 5447 | std::shared_ptr<arrow::Table> Table__ReplaceSchemaMetadata(const std::shared_ptr<arrow::Table>& x, cpp11::strings metadata); |
| 5448 | extern "C" SEXP _arrow_Table__ReplaceSchemaMetadata(SEXP x_sexp, SEXP metadata_sexp){ |
| 5449 | BEGIN_CPP11 |
| 5450 | arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type x(x_sexp); |
| 5451 | arrow::r::Input<cpp11::strings>::type metadata(metadata_sexp); |
| 5452 | return cpp11::as_sexp(Table__ReplaceSchemaMetadata(x, metadata)); |
| 5453 | END_CPP11 |
| 5454 | } |
| 5455 | // table.cpp |
| 5456 | std::shared_ptr<arrow::ChunkedArray> Table__column(const std::shared_ptr<arrow::Table>& table, int i); |
| 5457 | extern "C" SEXP _arrow_Table__column(SEXP table_sexp, SEXP i_sexp){ |
nothing calls this directly
no test coverage detected