| 5354 | // schema.cpp |
| 5355 | std::vector<std::string> Schema__field_names(const std::shared_ptr<arrow::Schema>& schema); |
| 5356 | extern "C" SEXP _arrow_Schema__field_names(SEXP schema_sexp){ |
| 5357 | BEGIN_CPP11 |
| 5358 | arrow::r::Input<const std::shared_ptr<arrow::Schema>&>::type schema(schema_sexp); |
| 5359 | return cpp11::as_sexp(Schema__field_names(schema)); |
| 5360 | END_CPP11 |
| 5361 | } |
| 5362 | // schema.cpp |
| 5363 | bool Schema__HasMetadata(const std::shared_ptr<arrow::Schema>& schema); |
| 5364 | extern "C" SEXP _arrow_Schema__HasMetadata(SEXP schema_sexp){ |
nothing calls this directly
no test coverage detected