| 5362 | // schema.cpp |
| 5363 | bool Schema__HasMetadata(const std::shared_ptr<arrow::Schema>& schema); |
| 5364 | extern "C" SEXP _arrow_Schema__HasMetadata(SEXP schema_sexp){ |
| 5365 | BEGIN_CPP11 |
| 5366 | arrow::r::Input<const std::shared_ptr<arrow::Schema>&>::type schema(schema_sexp); |
| 5367 | return cpp11::as_sexp(Schema__HasMetadata(schema)); |
| 5368 | END_CPP11 |
| 5369 | } |
| 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){ |
nothing calls this directly
no test coverage detected