2020-11-16 20:27:14 -05:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
|
|
*
|
2021-04-22 04:24:48 -04:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-11-16 20:27:14 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-07-22 10:41:00 -04:00
|
|
|
#include <AK/Concepts.h>
|
2021-06-24 12:24:13 -04:00
|
|
|
#include <AK/Find.h>
|
2020-11-22 19:09:44 -05:00
|
|
|
#include <AK/Iterator.h>
|
|
|
|
|
2020-11-16 20:27:14 -05:00
|
|
|
namespace AK {
|
|
|
|
|
2021-07-22 10:49:34 -04:00
|
|
|
template<typename TEndIterator, IteratorPairWith<TEndIterator> TIterator>
|
2022-06-26 12:18:56 -04:00
|
|
|
[[nodiscard]] constexpr bool all_of(
|
2021-07-22 10:49:34 -04:00
|
|
|
TIterator const& begin,
|
|
|
|
TEndIterator const& end,
|
2021-07-22 10:43:56 -04:00
|
|
|
auto const& predicate)
|
2020-11-16 20:27:14 -05:00
|
|
|
{
|
2021-06-24 12:24:13 -04:00
|
|
|
constexpr auto negated_predicate = [](auto const& pred) {
|
|
|
|
return [&](auto const& elem) { return !pred(elem); };
|
|
|
|
};
|
|
|
|
return !(find_if(begin, end, negated_predicate(predicate)) != end);
|
2020-11-16 20:27:14 -05:00
|
|
|
}
|
|
|
|
|
2021-07-22 10:41:00 -04:00
|
|
|
template<IterableContainer Container>
|
2022-06-26 12:18:56 -04:00
|
|
|
[[nodiscard]] constexpr bool all_of(Container&& container, auto const& predicate)
|
2021-07-22 10:41:00 -04:00
|
|
|
{
|
2021-06-24 12:24:13 -04:00
|
|
|
return all_of(container.begin(), container.end(), predicate);
|
2021-07-22 10:41:00 -04:00
|
|
|
}
|
|
|
|
|
2020-11-16 20:27:14 -05:00
|
|
|
}
|
2021-02-17 05:07:01 -05:00
|
|
|
|
2022-11-26 06:18:30 -05:00
|
|
|
#if USING_AK_GLOBALLY
|
2021-02-17 05:07:01 -05:00
|
|
|
using AK::all_of;
|
2022-11-26 06:18:30 -05:00
|
|
|
#endif
|