| 5224 | // schema.cpp |
| 5225 | std::shared_ptr<arrow::Schema> Schema__from_fields(const std::vector<std::shared_ptr<arrow::Field>>& fields); |
| 5226 | extern "C" SEXP _arrow_Schema__from_fields(SEXP fields_sexp){ |
| 5227 | BEGIN_CPP11 |
| 5228 | arrow::r::Input<const std::vector<std::shared_ptr<arrow::Field>>&>::type fields(fields_sexp); |
| 5229 | return cpp11::as_sexp(Schema__from_fields(fields)); |
| 5230 | END_CPP11 |
| 5231 | } |
| 5232 | // schema.cpp |
| 5233 | std::shared_ptr<arrow::Schema> Schema__from_list(cpp11::list field_list); |
| 5234 | extern "C" SEXP _arrow_Schema__from_list(SEXP field_list_sexp){ |
nothing calls this directly
no test coverage detected