| 197 | /// @see Algorithms::contains |
| 198 | template <typename U> |
| 199 | [[nodiscard]] bool contains(const U& value, size_t* index = nullptr) const noexcept |
| 200 | { |
| 201 | return Algorithms::contains(*this, value, index); |
| 202 | } |
| 203 | |
| 204 | /// @brief Finds the first item in array matching criteria given by the lambda |
| 205 | /// @see Algorithms::findIf |
no test coverage detected