| 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){ |
| 5278 | BEGIN_CPP11 |
| 5279 | arrow::r::Input<cpp11::list>::type field_list(field_list_sexp); |
| 5280 | return cpp11::as_sexp(Schema__from_list(field_list)); |
| 5281 | END_CPP11 |
| 5282 | } |
| 5283 | // schema.cpp |
| 5284 | std::string Schema__ToString(const std::shared_ptr<arrow::Schema>& s); |
| 5285 | extern "C" SEXP _arrow_Schema__ToString(SEXP s_sexp){ |
nothing calls this directly
no test coverage detected