serenity/AK/AnyOf.h

35 lines
695 B
C
Raw Normal View History

/*
* Copyright (c) 2021, 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 any_of(
TIterator const& begin,
TEndIterator const& end,
auto const& predicate)
{
return find_if(begin, end, predicate) != end;
}
template<IterableContainer Container>
[[nodiscard]] constexpr bool any_of(Container&& container, auto const& predicate)
{
return any_of(container.begin(), container.end(), predicate);
}
}
2021-02-07 10:35:08 +00:00
#if USING_AK_GLOBALLY
2021-02-07 10:35:08 +00:00
using AK::any_of;
#endif