| 5319 | // schema.cpp |
| 5320 | bool Schema__HasMetadata(const std::shared_ptr<arrow::Schema>& schema); |
| 5321 | extern "C" SEXP _arrow_Schema__HasMetadata(SEXP schema_sexp){ |
| 5322 | BEGIN_CPP11 |
| 5323 | arrow::r::Input<const std::shared_ptr<arrow::Schema>&>::type schema(schema_sexp); |
| 5324 | return cpp11::as_sexp(Schema__HasMetadata(schema)); |
| 5325 | END_CPP11 |
| 5326 | } |
| 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){ |
nothing calls this directly
no test coverage detected