2012-04-01 13:15:09 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_ALL_OF_HPP
|
|
|
|
#define SPROUT_ALGORITHM_ALL_OF_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/iterator/operation.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
// Copyright (C) 2011 RiSK (sscrisk)
|
|
|
|
|
|
|
|
// 25.2.1 All of
|
|
|
|
template<typename InputIterator, typename Predicate>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR bool
|
|
|
|
all_of(InputIterator first, InputIterator last, Predicate pred) {
|
2012-04-01 13:15:09 +00:00
|
|
|
return first == last ? true
|
2012-10-13 12:06:32 +00:00
|
|
|
: pred(*first) && sprout::all_of(sprout::next(first), last, pred)
|
2012-04-01 13:15:09 +00:00
|
|
|
;
|
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_ALL_OF_HPP
|