| 5370 | // schema.cpp |
| 5371 | cpp11::writable::list Schema__metadata(const std::shared_ptr<arrow::Schema>& schema); |
| 5372 | extern "C" SEXP _arrow_Schema__metadata(SEXP schema_sexp){ |
| 5373 | BEGIN_CPP11 |
| 5374 | arrow::r::Input<const std::shared_ptr<arrow::Schema>&>::type schema(schema_sexp); |
| 5375 | return cpp11::as_sexp(Schema__metadata(schema)); |
| 5376 | END_CPP11 |
| 5377 | } |
| 5378 | // schema.cpp |
| 5379 | std::shared_ptr<arrow::Schema> Schema__WithMetadata(const std::shared_ptr<arrow::Schema>& schema, cpp11::strings metadata); |
| 5380 | extern "C" SEXP _arrow_Schema__WithMetadata(SEXP schema_sexp, SEXP metadata_sexp){ |
nothing calls this directly
no test coverage detected