| 5403 | // table.cpp |
| 5404 | std::shared_ptr<arrow::Table> Table__ReplaceSchemaMetadata(const std::shared_ptr<arrow::Table>& x, cpp11::strings metadata); |
| 5405 | extern "C" SEXP _arrow_Table__ReplaceSchemaMetadata(SEXP x_sexp, SEXP metadata_sexp){ |
| 5406 | BEGIN_CPP11 |
| 5407 | arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type x(x_sexp); |
| 5408 | arrow::r::Input<cpp11::strings>::type metadata(metadata_sexp); |
| 5409 | return cpp11::as_sexp(Table__ReplaceSchemaMetadata(x, metadata)); |
| 5410 | END_CPP11 |
| 5411 | } |
| 5412 | // table.cpp |
| 5413 | std::shared_ptr<arrow::ChunkedArray> Table__column(const std::shared_ptr<arrow::Table>& table, int i); |
| 5414 | extern "C" SEXP _arrow_Table__column(SEXP table_sexp, SEXP i_sexp){ |
nothing calls this directly
no test coverage detected