Returns true if all vectors are Lazy vectors, possibly wrapped, that haven't been loaded yet.
| 54 | // Returns true if all vectors are Lazy vectors, possibly wrapped, that haven't |
| 55 | // been loaded yet. |
| 56 | bool 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 |
no test coverage detected