| 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){ |
| 5390 | BEGIN_CPP11 |
| 5391 | arrow::r::Input<const std::shared_ptr<arrow::Schema>&>::type schema(schema_sexp); |
| 5392 | arrow::r::Input<const std::vector<std::string>&>::type names(names_sexp); |
| 5393 | return cpp11::as_sexp(Schema__WithNames(schema, names)); |
| 5394 | END_CPP11 |
| 5395 | } |
| 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){ |
nothing calls this directly
no test coverage detected