| 5311 | // schema.cpp |
| 5312 | std::vector<std::string> Schema__field_names(const std::shared_ptr<arrow::Schema>& schema); |
| 5313 | extern "C" SEXP _arrow_Schema__field_names(SEXP schema_sexp){ |
| 5314 | BEGIN_CPP11 |
| 5315 | arrow::r::Input<const std::shared_ptr<arrow::Schema>&>::type schema(schema_sexp); |
| 5316 | return cpp11::as_sexp(Schema__field_names(schema)); |
| 5317 | END_CPP11 |
| 5318 | } |
| 5319 | // schema.cpp |
| 5320 | bool Schema__HasMetadata(const std::shared_ptr<arrow::Schema>& schema); |
| 5321 | extern "C" SEXP _arrow_Schema__HasMetadata(SEXP schema_sexp){ |
nothing calls this directly
no test coverage detected