mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
61 lines
3 KiB
C++
61 lines
3 KiB
C++
/*=============================================================================
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
=============================================================================*/
|
|
#ifndef SPROUT_RANGE_ALGORITHM_NON_MODIFYIING_HPP
|
|
#define SPROUT_RANGE_ALGORITHM_NON_MODIFYIING_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/range/algorithm/all_of.hpp>
|
|
#include <sprout/range/algorithm/any_of.hpp>
|
|
#include <sprout/range/algorithm/none_of.hpp>
|
|
#include <sprout/range/algorithm/one_of.hpp>
|
|
#include <sprout/range/algorithm/find.hpp>
|
|
#include <sprout/range/algorithm/find_if.hpp>
|
|
#include <sprout/range/algorithm/find_if_not.hpp>
|
|
#include <sprout/range/algorithm/find_end.hpp>
|
|
#include <sprout/range/algorithm/find_first_of.hpp>
|
|
#include <sprout/range/algorithm/adjacent_find.hpp>
|
|
#include <sprout/range/algorithm/count.hpp>
|
|
#include <sprout/range/algorithm/count_if.hpp>
|
|
#include <sprout/range/algorithm/mismatch.hpp>
|
|
#include <sprout/range/algorithm/equal.hpp>
|
|
#include <sprout/range/algorithm/is_permutation.hpp>
|
|
#include <sprout/range/algorithm/search.hpp>
|
|
#include <sprout/range/algorithm/search_n.hpp>
|
|
#include <sprout/range/algorithm/is_partitioned.hpp>
|
|
#include <sprout/range/algorithm/partition_point.hpp>
|
|
#include <sprout/range/algorithm/is_sorted.hpp>
|
|
#include <sprout/range/algorithm/is_sorted_until.hpp>
|
|
#include <sprout/range/algorithm/lower_bound.hpp>
|
|
#include <sprout/range/algorithm/upper_bound.hpp>
|
|
#include <sprout/range/algorithm/equal_range.hpp>
|
|
#include <sprout/range/algorithm/binary_search.hpp>
|
|
#include <sprout/range/algorithm/includes.hpp>
|
|
#include <sprout/range/algorithm/is_heap.hpp>
|
|
#include <sprout/range/algorithm/is_heap_until.hpp>
|
|
#include <sprout/range/algorithm/min_element.hpp>
|
|
#include <sprout/range/algorithm/max_element.hpp>
|
|
#include <sprout/range/algorithm/minmax_element.hpp>
|
|
#include <sprout/range/algorithm/lexicographical_compare.hpp>
|
|
#include <sprout/range/algorithm/all_of_equal.hpp>
|
|
#include <sprout/range/algorithm/any_of_equal.hpp>
|
|
#include <sprout/range/algorithm/none_of_equal.hpp>
|
|
#include <sprout/range/algorithm/one_of_equal.hpp>
|
|
#include <sprout/range/algorithm/tristate_lexicographical_compare.hpp>
|
|
#include <sprout/range/algorithm/is_increasing.hpp>
|
|
#include <sprout/range/algorithm/is_decreasing.hpp>
|
|
#include <sprout/range/algorithm/is_strictly_increasing.hpp>
|
|
#include <sprout/range/algorithm/is_strictly_decreasing.hpp>
|
|
#include <sprout/range/algorithm/find_intersection.hpp>
|
|
#include <sprout/range/algorithm/find_difference.hpp>
|
|
#include <sprout/range/algorithm/find_symmetric_difference.hpp>
|
|
#include <sprout/range/algorithm/next_union.hpp>
|
|
#include <sprout/range/algorithm/next_intersection.hpp>
|
|
#include <sprout/range/algorithm/next_difference.hpp>
|
|
#include <sprout/range/algorithm/next_symmetric_difference.hpp>
|
|
|
|
#endif // #ifndef SPROUT_RANGE_ALGORITHM_NON_MODIFYIING_HPP
|