* Check if the current dependency has any children. * * @return bool - Returns true if the current dependency group has children, otherwise false. */
| 107 | * @return bool - Returns true if the current dependency group has children, otherwise false. |
| 108 | */ |
| 109 | bool DependencyGroup::HasChildren() const |
| 110 | { |
| 111 | std::lock_guard lock(m_Mutex); |
| 112 | return std::any_of(m_Members.begin(), m_Members.end(), [](const auto& pair) { return !pair.second.empty(); }); |
| 113 | } |
| 114 | |
| 115 | /** |
| 116 | * Retrieve all dependency objects of the current dependency group the provided child Checkable depend on. |
no test coverage detected