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

Function to_r_list

r/src/arrow_cpp11.h:354–358  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

352
353template <typename T, typename ToListElement>
354cpp11::writable::list to_r_list(const std::vector<std::shared_ptr<T>>& x,
355 ToListElement&& to_element) {
356 auto as_sexp = [&](const std::shared_ptr<T>& t) { return to_element(t); };
357 return to_r_vector<cpp11::writable::list>(x, as_sexp);
358}
359
360template <typename T>
361cpp11::writable::list to_r_list(const std::vector<std::shared_ptr<T>>& x);

Callers 15

ExecPlanReader__batchesFunction · 0.85
ArrayData__buffersFunction · 0.85
AllocateMethod · 0.85
RecordBatch__columnsFunction · 0.85
DataType__fieldsFunction · 0.85
Table__columnsFunction · 0.85
StructArray__FlattenFunction · 0.85
ChunkedArray__chunksFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected