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

Function AccumulateArrayData

cpp/src/arrow/array/data.cc:752–758  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

750}
751
752void AccumulateArrayData(const std::shared_ptr<ArrayData>& data,
753 std::vector<std::shared_ptr<ArrayData>>* out) {
754 out->push_back(data);
755 for (const auto& child : data->child_data) {
756 AccumulateArrayData(child, out);
757 }
758}
759
760struct ViewDataImpl {
761 std::shared_ptr<DataType> root_in_type;

Callers 1

GetArrayViewFunction · 0.85

Calls 1

push_backMethod · 0.80

Tested by

no test coverage detected