| 5328 | // schema.cpp |
| 5329 | std::shared_ptr<arrow::Schema> Schema__RemoveField(const std::shared_ptr<arrow::Schema>& s, int i); |
| 5330 | extern "C" SEXP _arrow_Schema__RemoveField(SEXP s_sexp, SEXP i_sexp){ |
| 5331 | BEGIN_CPP11 |
| 5332 | arrow::r::Input<const std::shared_ptr<arrow::Schema>&>::type s(s_sexp); |
| 5333 | arrow::r::Input<int>::type i(i_sexp); |
| 5334 | return cpp11::as_sexp(Schema__RemoveField(s, i)); |
| 5335 | END_CPP11 |
| 5336 | } |
| 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){ |
nothing calls this directly
no test coverage detected