mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
AK: Convert AnyOf/AllOf to east-const style
This commit is contained in:
parent
d40d10aae7
commit
2dc31c503e
Notes:
sideshowbarker
2024-07-18 08:31:58 +09:00
Author: https://github.com/alimpfard Commit: https://github.com/SerenityOS/serenity/commit/2dc31c503e9 Pull-request: https://github.com/SerenityOS/serenity/pull/8933
2 changed files with 6 additions and 6 deletions
|
@ -13,9 +13,9 @@ namespace AK {
|
|||
|
||||
template<typename Container, typename ValueType>
|
||||
constexpr bool all_of(
|
||||
const SimpleIterator<Container, ValueType>& begin,
|
||||
const SimpleIterator<Container, ValueType>& end,
|
||||
const auto& predicate)
|
||||
SimpleIterator<Container, ValueType> const& begin,
|
||||
SimpleIterator<Container, ValueType> const& end,
|
||||
auto const& predicate)
|
||||
{
|
||||
for (auto iter = begin; iter != end; ++iter) {
|
||||
if (!predicate(*iter)) {
|
||||
|
|
|
@ -14,9 +14,9 @@ namespace AK {
|
|||
|
||||
template<typename Container, typename ValueType>
|
||||
constexpr bool any_of(
|
||||
const SimpleIterator<Container, ValueType>& begin,
|
||||
const SimpleIterator<Container, ValueType>& end,
|
||||
const auto& predicate)
|
||||
SimpleIterator<Container, ValueType> const& begin,
|
||||
SimpleIterator<Container, ValueType> const& end,
|
||||
auto const& predicate)
|
||||
{
|
||||
return find_if(begin, end, predicate) != end;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue