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
|
@ -5,6 +5,7 @@
|
|||
#include <sprout/algorithm/all_of.hpp>
|
||||
#include <sprout/algorithm/any_of.hpp>
|
||||
#include <sprout/algorithm/none_of.hpp>
|
||||
#include <sprout/algorithm/one_of.hpp>
|
||||
#include <sprout/algorithm/find.hpp>
|
||||
#include <sprout/algorithm/find_if.hpp>
|
||||
#include <sprout/algorithm/find_if_not.hpp>
|
||||
|
@ -36,5 +37,13 @@
|
|||
#include <sprout/algorithm/max_element.hpp>
|
||||
#include <sprout/algorithm/minmax_element.hpp>
|
||||
#include <sprout/algorithm/lexicographical_compare.hpp>
|
||||
#include <sprout/algorithm/all_of_equal.hpp>
|
||||
#include <sprout/algorithm/any_of_equal.hpp>
|
||||
#include <sprout/algorithm/none_of_equal.hpp>
|
||||
#include <sprout/algorithm/one_of_equal.hpp>
|
||||
#include <sprout/algorithm/is_increasing.hpp>
|
||||
#include <sprout/algorithm/is_decreasing.hpp>
|
||||
#include <sprout/algorithm/is_strictly_increasing.hpp>
|
||||
#include <sprout/algorithm/is_strictly_decreasing.hpp>
|
||||
|
||||
#endif // #ifndef SPROUT_ALGORITHM_NON_MODIFYIING_HPP
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue