| 3195 | // field.cpp |
| 3196 | std::shared_ptr<arrow::Field> Field__initialize(const std::string& name, const std::shared_ptr<arrow::DataType>& field, bool nullable); |
| 3197 | extern "C" SEXP _arrow_Field__initialize(SEXP name_sexp, SEXP field_sexp, SEXP nullable_sexp){ |
| 3198 | BEGIN_CPP11 |
| 3199 | arrow::r::Input<const std::string&>::type name(name_sexp); |
| 3200 | arrow::r::Input<const std::shared_ptr<arrow::DataType>&>::type field(field_sexp); |
| 3201 | arrow::r::Input<bool>::type nullable(nullable_sexp); |
| 3202 | return cpp11::as_sexp(Field__initialize(name, field, nullable)); |
| 3203 | END_CPP11 |
| 3204 | } |
| 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){ |
nothing calls this directly
no test coverage detected