| 5337 | // schema.cpp |
| 5338 | std::shared_ptr<arrow::Field> Schema__GetFieldByName(const std::shared_ptr<arrow::Schema>& s, std::string x); |
| 5339 | extern "C" SEXP _arrow_Schema__GetFieldByName(SEXP s_sexp, SEXP x_sexp){ |
| 5340 | BEGIN_CPP11 |
| 5341 | arrow::r::Input<const std::shared_ptr<arrow::Schema>&>::type s(s_sexp); |
| 5342 | arrow::r::Input<std::string>::type x(x_sexp); |
| 5343 | return cpp11::as_sexp(Schema__GetFieldByName(s, x)); |
| 5344 | END_CPP11 |
| 5345 | } |
| 5346 | // schema.cpp |
| 5347 | cpp11::list Schema__fields(const std::shared_ptr<arrow::Schema>& schema); |
| 5348 | extern "C" SEXP _arrow_Schema__fields(SEXP schema_sexp){ |
nothing calls this directly
no test coverage detected