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

Function _arrow_ChunkedArray__View

r/src/arrowExports.cpp:821–827  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

819// chunkedarray.cpp
820std::shared_ptr<arrow::ChunkedArray> ChunkedArray__View(const std::shared_ptr<arrow::ChunkedArray>& array, const std::shared_ptr<arrow::DataType>& type);
821extern "C" SEXP _arrow_ChunkedArray__View(SEXP array_sexp, SEXP type_sexp){
822BEGIN_CPP11
823 arrow::r::Input<const std::shared_ptr<arrow::ChunkedArray>&>::type array(array_sexp);
824 arrow::r::Input<const std::shared_ptr<arrow::DataType>&>::type type(type_sexp);
825 return cpp11::as_sexp(ChunkedArray__View(array, type));
826END_CPP11
827}
828// chunkedarray.cpp
829void ChunkedArray__Validate(const std::shared_ptr<arrow::ChunkedArray>& chunked_array);
830extern "C" SEXP _arrow_ChunkedArray__Validate(SEXP chunked_array_sexp){

Callers

nothing calls this directly

Calls 2

as_sexpFunction · 0.85
ChunkedArray__ViewFunction · 0.85

Tested by

no test coverage detected