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

Function _arrow_Schema__from_fields

r/src/arrowExports.cpp:5226–5231  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5224// schema.cpp
5225std::shared_ptr<arrow::Schema> Schema__from_fields(const std::vector<std::shared_ptr<arrow::Field>>& fields);
5226extern "C" SEXP _arrow_Schema__from_fields(SEXP fields_sexp){
5227BEGIN_CPP11
5228 arrow::r::Input<const std::vector<std::shared_ptr<arrow::Field>>&>::type fields(fields_sexp);
5229 return cpp11::as_sexp(Schema__from_fields(fields));
5230END_CPP11
5231}
5232// schema.cpp
5233std::shared_ptr<arrow::Schema> Schema__from_list(cpp11::list field_list);
5234extern "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