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

Function _arrow_ChunkedArray__from_list

r/src/arrowExports.cpp:856–862  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

854// chunkedarray.cpp
855std::shared_ptr<arrow::ChunkedArray> ChunkedArray__from_list(cpp11::list chunks, SEXP s_type);
856extern "C" SEXP _arrow_ChunkedArray__from_list(SEXP chunks_sexp, SEXP s_type_sexp){
857BEGIN_CPP11
858 arrow::r::Input<cpp11::list>::type chunks(chunks_sexp);
859 arrow::r::Input<SEXP>::type s_type(s_type_sexp);
860 return cpp11::as_sexp(ChunkedArray__from_list(chunks, s_type));
861END_CPP11
862}
863// chunkedarray.cpp
864r_vec_size ChunkedArray__ReferencedBufferSize(const std::shared_ptr<arrow::ChunkedArray>& chunked_array);
865extern "C" SEXP _arrow_ChunkedArray__ReferencedBufferSize(SEXP chunked_array_sexp){

Callers

nothing calls this directly

Calls 2

as_sexpFunction · 0.85
ChunkedArray__from_listFunction · 0.85

Tested by

no test coverage detected