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

Function _arrow_Array__View

r/src/arrowExports.cpp:201–207  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

199// array.cpp
200std::shared_ptr<arrow::Array> Array__View(const std::shared_ptr<arrow::Array>& array, const std::shared_ptr<arrow::DataType>& type);
201extern "C" SEXP _arrow_Array__View(SEXP array_sexp, SEXP type_sexp){
202BEGIN_CPP11
203 arrow::r::Input<const std::shared_ptr<arrow::Array>&>::type array(array_sexp);
204 arrow::r::Input<const std::shared_ptr<arrow::DataType>&>::type type(type_sexp);
205 return cpp11::as_sexp(Array__View(array, type));
206END_CPP11
207}
208// array.cpp
209void Array__Validate(const std::shared_ptr<arrow::Array>& array);
210extern "C" SEXP _arrow_Array__Validate(SEXP array_sexp){

Callers

nothing calls this directly

Calls 2

as_sexpFunction · 0.85
Array__ViewFunction · 0.85

Tested by

no test coverage detected