mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
20 lines
568 B
C++
20 lines
568 B
C++
#ifndef SPROUT_ALGORITHM_ANY_OF_HPP
|
|
#define SPROUT_ALGORITHM_ANY_OF_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/iterator/operation.hpp>
|
|
|
|
namespace sprout {
|
|
// Copyright (C) 2011 RiSK (sscrisk)
|
|
|
|
// 25.2.2 Any of
|
|
template<typename InputIterator, typename Predicate>
|
|
inline SPROUT_CONSTEXPR bool
|
|
any_of(InputIterator first, InputIterator last, Predicate pred) {
|
|
return first == last ? false
|
|
: pred(*first) || sprout::any_of(sprout::next(first), last, pred)
|
|
;
|
|
}
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_ANY_OF_HPP
|