| 3214 | // field.cpp |
| 3215 | std::string Field__ToString(const std::shared_ptr<arrow::Field>& field); |
| 3216 | extern "C" SEXP _arrow_Field__ToString(SEXP field_sexp){ |
| 3217 | BEGIN_CPP11 |
| 3218 | arrow::r::Input<const std::shared_ptr<arrow::Field>&>::type field(field_sexp); |
| 3219 | return cpp11::as_sexp(Field__ToString(field)); |
| 3220 | END_CPP11 |
| 3221 | } |
| 3222 | // field.cpp |
| 3223 | std::string Field__name(const std::shared_ptr<arrow::Field>& field); |
| 3224 | extern "C" SEXP _arrow_Field__name(SEXP field_sexp){ |
nothing calls this directly
no test coverage detected