| 5308 | // schema.cpp |
| 5309 | std::shared_ptr<arrow::Schema> Schema__AddField(const std::shared_ptr<arrow::Schema>& s, int i, const std::shared_ptr<arrow::Field>& field); |
| 5310 | extern "C" SEXP _arrow_Schema__AddField(SEXP s_sexp, SEXP i_sexp, SEXP field_sexp){ |
| 5311 | BEGIN_CPP11 |
| 5312 | arrow::r::Input<const std::shared_ptr<arrow::Schema>&>::type s(s_sexp); |
| 5313 | arrow::r::Input<int>::type i(i_sexp); |
| 5314 | arrow::r::Input<const std::shared_ptr<arrow::Field>&>::type field(field_sexp); |
| 5315 | return cpp11::as_sexp(Schema__AddField(s, i, field)); |
| 5316 | END_CPP11 |
| 5317 | } |
| 5318 | // schema.cpp |
| 5319 | std::shared_ptr<arrow::Schema> Schema__SetField(const std::shared_ptr<arrow::Schema>& s, int i, const std::shared_ptr<arrow::Field>& field); |
| 5320 | extern "C" SEXP _arrow_Schema__SetField(SEXP s_sexp, SEXP i_sexp, SEXP field_sexp){ |
nothing calls this directly
no test coverage detected