mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-07 20:31:04 +03:00
ae3ffdd521
This patch adds the `USING_AK_GLOBALLY` macro which is enabled by default, but can be overridden by build flags. This is a step towards integrating Jakt and AK types.
38 lines
848 B
C++
38 lines
848 B
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Concepts.h>
|
|
#include <AK/Find.h>
|
|
#include <AK/Iterator.h>
|
|
|
|
namespace AK {
|
|
|
|
template<typename TEndIterator, IteratorPairWith<TEndIterator> TIterator>
|
|
[[nodiscard]] constexpr bool all_of(
|
|
TIterator const& begin,
|
|
TEndIterator const& end,
|
|
auto const& predicate)
|
|
{
|
|
constexpr auto negated_predicate = [](auto const& pred) {
|
|
return [&](auto const& elem) { return !pred(elem); };
|
|
};
|
|
return !(find_if(begin, end, negated_predicate(predicate)) != end);
|
|
}
|
|
|
|
template<IterableContainer Container>
|
|
[[nodiscard]] constexpr bool all_of(Container&& container, auto const& predicate)
|
|
{
|
|
return all_of(container.begin(), container.end(), predicate);
|
|
}
|
|
|
|
}
|
|
|
|
#if USING_AK_GLOBALLY
|
|
using AK::all_of;
|
|
#endif
|