| 5353 | // schema.cpp |
| 5354 | cpp11::writable::raws Schema__serialize(const std::shared_ptr<arrow::Schema>& schema); |
| 5355 | extern "C" SEXP _arrow_Schema__serialize(SEXP schema_sexp){ |
| 5356 | BEGIN_CPP11 |
| 5357 | arrow::r::Input<const std::shared_ptr<arrow::Schema>&>::type schema(schema_sexp); |
| 5358 | return cpp11::as_sexp(Schema__serialize(schema)); |
| 5359 | END_CPP11 |
| 5360 | } |
| 5361 | // schema.cpp |
| 5362 | bool Schema__Equals(const std::shared_ptr<arrow::Schema>& schema, const std::shared_ptr<arrow::Schema>& other, bool check_metadata); |
| 5363 | extern "C" SEXP _arrow_Schema__Equals(SEXP schema_sexp, SEXP other_sexp, SEXP check_metadata_sexp){ |
nothing calls this directly
no test coverage detected