summaryrefslogtreecommitdiff
path: root/AK/AllOf.h
diff options
context:
space:
mode:
Diffstat (limited to 'AK/AllOf.h')
-rw-r--r--AK/AllOf.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/AK/AllOf.h b/AK/AllOf.h
index 8e2f94df1c..5fe698b0f2 100644
--- a/AK/AllOf.h
+++ b/AK/AllOf.h
@@ -26,9 +26,15 @@
#pragma once
+#include <AK/Iterator.h>
+
namespace AK {
-constexpr bool all_of(const auto& begin, const auto& end, const auto& predicate)
+template<typename Container, typename ValueType>
+constexpr bool all_of(
+ const SimpleIterator<Container, ValueType>& begin,
+ const SimpleIterator<Container, ValueType>& end,
+ const auto& predicate)
{
for (auto iter = begin; iter != end; ++iter) {
if (!predicate(*iter)) {