mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-14 15:04:09 +00:00
add algorithm one_of, all_of_equal, any_of_equal, none_of_equal, one_of_equal, is_increasing, is_decreasing, is_strictly_increasing, is_strictly_decreasing
This commit is contained in:
parent
1ef528d204
commit
de41f5c880
22 changed files with 425 additions and 3 deletions
23
sprout/algorithm/is_increasing.hpp
Normal file
23
sprout/algorithm/is_increasing.hpp
Normal file
|
@ -0,0 +1,23 @@
|
|||
#ifndef SPROUT_ALGORITHM_IS_INCREASING_HPP
|
||||
#define SPROUT_ALGORITHM_IS_INCREASING_HPP
|
||||
|
||||
#include <iterator>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/algorithm/is_sorted.hpp>
|
||||
#include HDR_FUNCTIONAL_SSCRISK_CEL_OR_SPROUT
|
||||
|
||||
namespace sprout {
|
||||
//
|
||||
// is_increasing
|
||||
//
|
||||
template<typename ForwardIterator>
|
||||
inline SPROUT_CONSTEXPR bool
|
||||
is_increasing(ForwardIterator first, ForwardIterator last) {
|
||||
return sprout::is_sorted(
|
||||
first, last,
|
||||
NS_SSCRISK_CEL_OR_SPROUT::less<typename std::iterator_traits<ForwardIterator>::value_type>()
|
||||
);
|
||||
}
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_ALGORITHM_IS_INCREASING_HPP
|
Loading…
Add table
Add a link
Reference in a new issue