| 5294 | // schema.cpp |
| 5295 | std::shared_ptr<arrow::Field> Schema__GetFieldByName(const std::shared_ptr<arrow::Schema>& s, std::string x); |
| 5296 | extern "C" SEXP _arrow_Schema__GetFieldByName(SEXP s_sexp, SEXP x_sexp){ |
| 5297 | BEGIN_CPP11 |
| 5298 | arrow::r::Input<const std::shared_ptr<arrow::Schema>&>::type s(s_sexp); |
| 5299 | arrow::r::Input<std::string>::type x(x_sexp); |
| 5300 | return cpp11::as_sexp(Schema__GetFieldByName(s, x)); |
| 5301 | END_CPP11 |
| 5302 | } |
| 5303 | // schema.cpp |
| 5304 | cpp11::list Schema__fields(const std::shared_ptr<arrow::Schema>& schema); |
| 5305 | extern "C" SEXP _arrow_Schema__fields(SEXP schema_sexp){ |
nothing calls this directly
no test coverage detected