MCPcopy Create free account
hub / github.com/bytedance/bolt / areAllLazyNotLoaded

Function areAllLazyNotLoaded

bolt/exec/GroupingSet.cpp:56–60  ·  view source on GitHub ↗

Returns true if all vectors are Lazy vectors, possibly wrapped, that haven't been loaded yet.

Source from the content-addressed store, hash-verified

54// Returns true if all vectors are Lazy vectors, possibly wrapped, that haven't
55// been loaded yet.
56bool areAllLazyNotLoaded(const std::vector<VectorPtr>& vectors) {
57 return std::all_of(vectors.begin(), vectors.end(), [](const auto& vector) {
58 return isLazyNotLoaded(*vector);
59 });
60}
61
62} // namespace
63

Callers 2

addInputForActiveRowsMethod · 0.85

Calls 3

isLazyNotLoadedFunction · 0.85
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected