| 5327 | // schema.cpp |
| 5328 | cpp11::writable::list Schema__metadata(const std::shared_ptr<arrow::Schema>& schema); |
| 5329 | extern "C" SEXP _arrow_Schema__metadata(SEXP schema_sexp){ |
| 5330 | BEGIN_CPP11 |
| 5331 | arrow::r::Input<const std::shared_ptr<arrow::Schema>&>::type schema(schema_sexp); |
| 5332 | return cpp11::as_sexp(Schema__metadata(schema)); |
| 5333 | END_CPP11 |
| 5334 | } |
| 5335 | // schema.cpp |
| 5336 | std::shared_ptr<arrow::Schema> Schema__WithMetadata(const std::shared_ptr<arrow::Schema>& schema, cpp11::strings metadata); |
| 5337 | extern "C" SEXP _arrow_Schema__WithMetadata(SEXP schema_sexp, SEXP metadata_sexp){ |
nothing calls this directly
no test coverage detected