| 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){ |
| 5347 | BEGIN_CPP11 |
| 5348 | arrow::r::Input<const std::shared_ptr<arrow::Schema>&>::type schema(schema_sexp); |
| 5349 | arrow::r::Input<const std::vector<std::string>&>::type names(names_sexp); |
| 5350 | return cpp11::as_sexp(Schema__WithNames(schema, names)); |
| 5351 | END_CPP11 |
| 5352 | } |
| 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){ |
nothing calls this directly
no test coverage detected