| 5396 | // schema.cpp |
| 5397 | cpp11::writable::raws Schema__serialize(const std::shared_ptr<arrow::Schema>& schema); |
| 5398 | extern "C" SEXP _arrow_Schema__serialize(SEXP schema_sexp){ |
| 5399 | BEGIN_CPP11 |
| 5400 | arrow::r::Input<const std::shared_ptr<arrow::Schema>&>::type schema(schema_sexp); |
| 5401 | return cpp11::as_sexp(Schema__serialize(schema)); |
| 5402 | END_CPP11 |
| 5403 | } |
| 5404 | // schema.cpp |
| 5405 | bool Schema__Equals(const std::shared_ptr<arrow::Schema>& schema, const std::shared_ptr<arrow::Schema>& other, bool check_metadata); |
| 5406 | extern "C" SEXP _arrow_Schema__Equals(SEXP schema_sexp, SEXP other_sexp, SEXP check_metadata_sexp){ |
nothing calls this directly
no test coverage detected