| 5267 | // schema.cpp |
| 5268 | std::shared_ptr<arrow::Schema> Schema__from_fields(const std::vector<std::shared_ptr<arrow::Field>>& fields); |
| 5269 | extern "C" SEXP _arrow_Schema__from_fields(SEXP fields_sexp){ |
| 5270 | BEGIN_CPP11 |
| 5271 | arrow::r::Input<const std::vector<std::shared_ptr<arrow::Field>>&>::type fields(fields_sexp); |
| 5272 | return cpp11::as_sexp(Schema__from_fields(fields)); |
| 5273 | END_CPP11 |
| 5274 | } |
| 5275 | // schema.cpp |
| 5276 | std::shared_ptr<arrow::Schema> Schema__from_list(cpp11::list field_list); |
| 5277 | extern "C" SEXP _arrow_Schema__from_list(SEXP field_list_sexp){ |
nothing calls this directly
no test coverage detected