2021-01-14 17:36:23 -05:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021, the SerenityOS developers.
|
|
|
|
*
|
2021-04-22 04:24:48 -04:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2021-01-14 17:36:23 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-07-22 10:41:00 -04:00
|
|
|
#include <AK/Concepts.h>
|
2021-06-11 19:57:46 -04:00
|
|
|
#include <AK/Find.h>
|
2021-01-14 17:36:23 -05:00
|
|
|
#include <AK/Iterator.h>
|
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
2021-07-22 10:49:34 -04:00
|
|
|
template<typename TEndIterator, IteratorPairWith<TEndIterator> TIterator>
|
2022-06-26 12:19:34 -04:00
|
|
|
[[nodiscard]] constexpr bool any_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)
|
2021-01-14 17:36:23 -05:00
|
|
|
{
|
2021-06-11 19:57:46 -04:00
|
|
|
return find_if(begin, end, predicate) != end;
|
2021-01-14 17:36:23 -05:00
|
|
|
}
|
|
|
|
|
2021-07-22 10:41:00 -04:00
|
|
|
template<IterableContainer Container>
|
2022-06-26 12:19:34 -04:00
|
|
|
[[nodiscard]] constexpr bool any_of(Container&& container, auto const& predicate)
|
2021-07-22 10:41:00 -04:00
|
|
|
{
|
2021-07-25 14:56:52 -04:00
|
|
|
return any_of(container.begin(), container.end(), predicate);
|
2021-07-22 10:41:00 -04:00
|
|
|
}
|
|
|
|
|
2021-01-14 17:36:23 -05:00
|
|
|
}
|
2021-02-07 05:35:08 -05:00
|
|
|
|
2022-11-26 06:18:30 -05:00
|
|
|
#if USING_AK_GLOBALLY
|
2021-02-07 05:35:08 -05:00
|
|
|
using AK::any_of;
|
2022-11-26 06:18:30 -05:00
|
|
|
#endif
|