| 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){ |
| 5235 | BEGIN_CPP11 |
| 5236 | arrow::r::Input<cpp11::list>::type field_list(field_list_sexp); |
| 5237 | return cpp11::as_sexp(Schema__from_list(field_list)); |
| 5238 | END_CPP11 |
| 5239 | } |
| 5240 | // schema.cpp |
| 5241 | std::string Schema__ToString(const std::shared_ptr<arrow::Schema>& s); |
| 5242 | extern "C" SEXP _arrow_Schema__ToString(SEXP s_sexp){ |
nothing calls this directly
no test coverage detected