| 3204 | // field.cpp |
| 3205 | std::shared_ptr<arrow::Field> Field__initialize(const std::string& name, const std::shared_ptr<arrow::DataType>& field, bool nullable); |
| 3206 | extern "C" SEXP _arrow_Field__initialize(SEXP name_sexp, SEXP field_sexp, SEXP nullable_sexp){ |
| 3207 | BEGIN_CPP11 |
| 3208 | arrow::r::Input<const std::string&>::type name(name_sexp); |
| 3209 | arrow::r::Input<const std::shared_ptr<arrow::DataType>&>::type field(field_sexp); |
| 3210 | arrow::r::Input<bool>::type nullable(nullable_sexp); |
| 3211 | return cpp11::as_sexp(Field__initialize(name, field, nullable)); |
| 3212 | END_CPP11 |
| 3213 | } |
| 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){ |
nothing calls this directly
no test coverage detected