mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-04 14:14:09 +00:00
porting sscrisk/CEL
This commit is contained in:
parent
ad60c8c530
commit
db20f64991
181 changed files with 2531 additions and 607 deletions
19
sprout/algorithm/any_of.hpp
Normal file
19
sprout/algorithm/any_of.hpp
Normal file
|
@ -0,0 +1,19 @@
|
|||
#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>
|
||||
SPROUT_CONSTEXPR bool any_of(InputIterator first, InputIterator last, Predicate pred) {
|
||||
return first == last ? false
|
||||
: pred(*first) == true || sprout::any_of(sprout::next(first), last, pred)
|
||||
;
|
||||
}
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_ALGORITHM_ANY_OF_HPP
|
Loading…
Add table
Add a link
Reference in a new issue