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

Function _arrow_Array__as_vector

r/src/arrowExports.cpp:428–433  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

426// array_to_vector.cpp
427SEXP Array__as_vector(const std::shared_ptr<arrow::Array>& array);
428extern "C" SEXP _arrow_Array__as_vector(SEXP array_sexp){
429BEGIN_CPP11
430 arrow::r::Input<const std::shared_ptr<arrow::Array>&>::type array(array_sexp);
431 return cpp11::as_sexp(Array__as_vector(array));
432END_CPP11
433}
434// array_to_vector.cpp
435SEXP ChunkedArray__as_vector(const std::shared_ptr<arrow::ChunkedArray>& chunked_array, bool use_threads);
436extern "C" SEXP _arrow_ChunkedArray__as_vector(SEXP chunked_array_sexp, SEXP use_threads_sexp){

Callers

nothing calls this directly

Calls 2

as_sexpFunction · 0.85
Array__as_vectorFunction · 0.85

Tested by

no test coverage detected