diff --git a/src/aal/algorithm.hpp b/src/aal/algorithm.hpp index 89a3249..6ef2553 100644 --- a/src/aal/algorithm.hpp +++ b/src/aal/algorithm.hpp @@ -16,7 +16,7 @@ find(P const pred, I f, I const l, Is... fs) { template [[nodiscard]] constexpr auto -found(P const pred, I f, I const l, Is... fs) { +any_of(P const pred, I f, I const l, Is... fs) { auto const t = find(pred, f, l, fs...); return std::get<0>(t) != l; }