MCPcopy Create free account
hub / github.com/apache/arrow / _arrow_Field__initialize

Function _arrow_Field__initialize

r/src/arrowExports.cpp:3206–3213  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3204// field.cpp
3205std::shared_ptr<arrow::Field> Field__initialize(const std::string& name, const std::shared_ptr<arrow::DataType>& field, bool nullable);
3206extern "C" SEXP _arrow_Field__initialize(SEXP name_sexp, SEXP field_sexp, SEXP nullable_sexp){
3207BEGIN_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));
3212END_CPP11
3213}
3214// field.cpp
3215std::string Field__ToString(const std::shared_ptr<arrow::Field>& field);
3216extern "C" SEXP _arrow_Field__ToString(SEXP field_sexp){

Callers

nothing calls this directly

Calls 2

as_sexpFunction · 0.85
Field__initializeFunction · 0.85

Tested by

no test coverage detected