| 5285 | // schema.cpp |
| 5286 | std::shared_ptr<arrow::Schema> Schema__RemoveField(const std::shared_ptr<arrow::Schema>& s, int i); |
| 5287 | extern "C" SEXP _arrow_Schema__RemoveField(SEXP s_sexp, SEXP i_sexp){ |
| 5288 | BEGIN_CPP11 |
| 5289 | arrow::r::Input<const std::shared_ptr<arrow::Schema>&>::type s(s_sexp); |
| 5290 | arrow::r::Input<int>::type i(i_sexp); |
| 5291 | return cpp11::as_sexp(Schema__RemoveField(s, i)); |
| 5292 | END_CPP11 |
| 5293 | } |
| 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){ |
nothing calls this directly
no test coverage detected