| 5378 | // schema.cpp |
| 5379 | std::shared_ptr<arrow::Schema> Schema__WithMetadata(const std::shared_ptr<arrow::Schema>& schema, cpp11::strings metadata); |
| 5380 | extern "C" SEXP _arrow_Schema__WithMetadata(SEXP schema_sexp, SEXP metadata_sexp){ |
| 5381 | BEGIN_CPP11 |
| 5382 | arrow::r::Input<const std::shared_ptr<arrow::Schema>&>::type schema(schema_sexp); |
| 5383 | arrow::r::Input<cpp11::strings>::type metadata(metadata_sexp); |
| 5384 | return cpp11::as_sexp(Schema__WithMetadata(schema, metadata)); |
| 5385 | END_CPP11 |
| 5386 | } |
| 5387 | // schema.cpp |
| 5388 | std::shared_ptr<arrow::Schema> Schema__WithNames(const std::shared_ptr<arrow::Schema>& schema, const std::vector<std::string>& names); |
| 5389 | extern "C" SEXP _arrow_Schema__WithNames(SEXP schema_sexp, SEXP names_sexp){ |
nothing calls this directly
no test coverage detected