| 3264 | // field.cpp |
| 3265 | cpp11::writable::list Field__metadata(const std::shared_ptr<arrow::Field>& field); |
| 3266 | extern "C" SEXP _arrow_Field__metadata(SEXP field_sexp){ |
| 3267 | BEGIN_CPP11 |
| 3268 | arrow::r::Input<const std::shared_ptr<arrow::Field>&>::type field(field_sexp); |
| 3269 | return cpp11::as_sexp(Field__metadata(field)); |
| 3270 | END_CPP11 |
| 3271 | } |
| 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){ |
nothing calls this directly
no test coverage detected