mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-12 14:54:10 +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
21
sprout/range/algorithm/all_of_equal.hpp
Normal file
21
sprout/range/algorithm/all_of_equal.hpp
Normal file
|
@ -0,0 +1,21 @@
|
|||
#ifndef SPROUT_RANGE_ALGORITHM_ALL_OF_EQUAL_HPP
|
||||
#define SPROUT_RANGE_ALGORITHM_ALL_OF_EQUAL_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/container/functions.hpp>
|
||||
#include <sprout/algorithm/all_of_equal.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace range {
|
||||
//
|
||||
// all_of_equal
|
||||
//
|
||||
template<typename Range, typename T>
|
||||
inline SPROUT_CONSTEXPR bool
|
||||
all_of_equal(Range const& range, T const& value) {
|
||||
return sprout::all_of_equal(sprout::begin(range), sprout::end(range), value);
|
||||
}
|
||||
} // namespace range
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_RANGE_ALGORITHM_ALL_OF_EQUAL_HPP
|
Loading…
Add table
Add a link
Reference in a new issue