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

Function _arrow_Schema__from_fields

r/src/arrowExports.cpp:5269–5274  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5267// schema.cpp
5268std::shared_ptr<arrow::Schema> Schema__from_fields(const std::vector<std::shared_ptr<arrow::Field>>& fields);
5269extern "C" SEXP _arrow_Schema__from_fields(SEXP fields_sexp){
5270BEGIN_CPP11
5271 arrow::r::Input<const std::vector<std::shared_ptr<arrow::Field>>&>::type fields(fields_sexp);
5272 return cpp11::as_sexp(Schema__from_fields(fields));
5273END_CPP11
5274}
5275// schema.cpp
5276std::shared_ptr<arrow::Schema> Schema__from_list(cpp11::list field_list);
5277extern "C" SEXP _arrow_Schema__from_list(SEXP field_list_sexp){

Callers

nothing calls this directly

Calls 2

as_sexpFunction · 0.85
Schema__from_fieldsFunction · 0.85

Tested by

no test coverage detected