| 5275 | // schema.cpp |
| 5276 | std::shared_ptr<arrow::Schema> Schema__SetField(const std::shared_ptr<arrow::Schema>& s, int i, const std::shared_ptr<arrow::Field>& field); |
| 5277 | extern "C" SEXP _arrow_Schema__SetField(SEXP s_sexp, SEXP i_sexp, SEXP field_sexp){ |
| 5278 | BEGIN_CPP11 |
| 5279 | arrow::r::Input<const std::shared_ptr<arrow::Schema>&>::type s(s_sexp); |
| 5280 | arrow::r::Input<int>::type i(i_sexp); |
| 5281 | arrow::r::Input<const std::shared_ptr<arrow::Field>&>::type field(field_sexp); |
| 5282 | return cpp11::as_sexp(Schema__SetField(s, i, field)); |
| 5283 | END_CPP11 |
| 5284 | } |
| 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){ |
nothing calls this directly
no test coverage detected