| 5335 | // schema.cpp |
| 5336 | std::shared_ptr<arrow::Schema> Schema__WithMetadata(const std::shared_ptr<arrow::Schema>& schema, cpp11::strings metadata); |
| 5337 | extern "C" SEXP _arrow_Schema__WithMetadata(SEXP schema_sexp, SEXP metadata_sexp){ |
| 5338 | BEGIN_CPP11 |
| 5339 | arrow::r::Input<const std::shared_ptr<arrow::Schema>&>::type schema(schema_sexp); |
| 5340 | arrow::r::Input<cpp11::strings>::type metadata(metadata_sexp); |
| 5341 | return cpp11::as_sexp(Schema__WithMetadata(schema, metadata)); |
| 5342 | END_CPP11 |
| 5343 | } |
| 5344 | // schema.cpp |
| 5345 | std::shared_ptr<arrow::Schema> Schema__WithNames(const std::shared_ptr<arrow::Schema>& schema, const std::vector<std::string>& names); |
| 5346 | extern "C" SEXP _arrow_Schema__WithNames(SEXP schema_sexp, SEXP names_sexp){ |
nothing calls this directly
no test coverage detected