| 5438 | // table.cpp |
| 5439 | std::shared_ptr<arrow::Schema> Table__schema(const std::shared_ptr<arrow::Table>& x); |
| 5440 | extern "C" SEXP _arrow_Table__schema(SEXP x_sexp){ |
| 5441 | BEGIN_CPP11 |
| 5442 | arrow::r::Input<const std::shared_ptr<arrow::Table>&>::type x(x_sexp); |
| 5443 | return cpp11::as_sexp(Table__schema(x)); |
| 5444 | END_CPP11 |
| 5445 | } |
| 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){ |
nothing calls this directly
no test coverage detected