| 3205 | // field.cpp |
| 3206 | std::string Field__ToString(const std::shared_ptr<arrow::Field>& field); |
| 3207 | extern "C" SEXP _arrow_Field__ToString(SEXP field_sexp){ |
| 3208 | BEGIN_CPP11 |
| 3209 | arrow::r::Input<const std::shared_ptr<arrow::Field>&>::type field(field_sexp); |
| 3210 | return cpp11::as_sexp(Field__ToString(field)); |
| 3211 | END_CPP11 |
| 3212 | } |
| 3213 | // field.cpp |
| 3214 | std::string Field__name(const std::shared_ptr<arrow::Field>& field); |
| 3215 | extern "C" SEXP _arrow_Field__name(SEXP field_sexp){ |
nothing calls this directly
no test coverage detected