| 83 | /// @see Algorithms::findIf |
| 84 | template <typename Lambda> |
| 85 | [[nodiscard]] bool find(Lambda&& lambda, size_t* index = nullptr) const |
| 86 | { |
| 87 | return Algorithms::findIf(Parent::begin(), Parent::end(), move(lambda), index) != Parent::end(); |
| 88 | } |
| 89 | |
| 90 | /// @brief Removes all items matching criteria given by Lambda |
| 91 | /// @see Algorithms::removeIf |