| 3272 | // field.cpp |
| 3273 | std::shared_ptr<arrow::Field> Field__WithMetadata(const std::shared_ptr<arrow::Field>& field, cpp11::strings metadata); |
| 3274 | extern "C" SEXP _arrow_Field__WithMetadata(SEXP field_sexp, SEXP metadata_sexp){ |
| 3275 | BEGIN_CPP11 |
| 3276 | arrow::r::Input<const std::shared_ptr<arrow::Field>&>::type field(field_sexp); |
| 3277 | arrow::r::Input<cpp11::strings>::type metadata(metadata_sexp); |
| 3278 | return cpp11::as_sexp(Field__WithMetadata(field, metadata)); |
| 3279 | END_CPP11 |
| 3280 | } |
| 3281 | // field.cpp |
| 3282 | std::shared_ptr<arrow::Field> Field__RemoveMetadata(const std::shared_ptr<arrow::Field>& field); |
| 3283 | extern "C" SEXP _arrow_Field__RemoveMetadata(SEXP field_sexp){ |
nothing calls this directly
no test coverage detected