Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-11-15 09:54:58

0001 /// \file
0002 // Range v3 library
0003 //
0004 //  Copyright Eric Niebler 2013-present
0005 //
0006 //  Use, modification and distribution is subject to the
0007 //  Boost Software License, Version 1.0. (See accompanying
0008 //  file LICENSE_1_0.txt or copy at
0009 //  http://www.boost.org/LICENSE_1_0.txt)
0010 //
0011 // Project home: https://github.com/ericniebler/range-v3
0012 //
0013 
0014 #ifndef RANGES_V3_ALGORITHM_HPP
0015 #define RANGES_V3_ALGORITHM_HPP
0016 
0017 #include <range/v3/algorithm/adjacent_find.hpp>
0018 #include <range/v3/algorithm/adjacent_remove_if.hpp>
0019 #include <range/v3/algorithm/all_of.hpp>
0020 #include <range/v3/algorithm/any_of.hpp>
0021 #include <range/v3/algorithm/binary_search.hpp>
0022 #include <range/v3/algorithm/contains.hpp>
0023 #include <range/v3/algorithm/copy.hpp>
0024 #include <range/v3/algorithm/copy_backward.hpp>
0025 #include <range/v3/algorithm/copy_if.hpp>
0026 #include <range/v3/algorithm/copy_n.hpp>
0027 #include <range/v3/algorithm/count.hpp>
0028 #include <range/v3/algorithm/count_if.hpp>
0029 #include <range/v3/algorithm/ends_with.hpp>
0030 #include <range/v3/algorithm/equal.hpp>
0031 #include <range/v3/algorithm/equal_range.hpp>
0032 #include <range/v3/algorithm/fill.hpp>
0033 #include <range/v3/algorithm/fill_n.hpp>
0034 #include <range/v3/algorithm/find.hpp>
0035 #include <range/v3/algorithm/find_end.hpp>
0036 #include <range/v3/algorithm/find_first_of.hpp>
0037 #include <range/v3/algorithm/find_if.hpp>
0038 #include <range/v3/algorithm/find_if_not.hpp>
0039 #include <range/v3/algorithm/fold.hpp>
0040 #include <range/v3/algorithm/for_each.hpp>
0041 #include <range/v3/algorithm/for_each_n.hpp>
0042 #include <range/v3/algorithm/generate.hpp>
0043 #include <range/v3/algorithm/generate_n.hpp>
0044 #include <range/v3/algorithm/heap_algorithm.hpp>
0045 #include <range/v3/algorithm/inplace_merge.hpp>
0046 #include <range/v3/algorithm/is_partitioned.hpp>
0047 #include <range/v3/algorithm/is_sorted.hpp>
0048 #include <range/v3/algorithm/is_sorted_until.hpp>
0049 #include <range/v3/algorithm/lexicographical_compare.hpp>
0050 #include <range/v3/algorithm/lower_bound.hpp>
0051 #include <range/v3/algorithm/max.hpp>
0052 #include <range/v3/algorithm/max_element.hpp>
0053 #include <range/v3/algorithm/merge.hpp>
0054 #include <range/v3/algorithm/min.hpp>
0055 #include <range/v3/algorithm/min_element.hpp>
0056 #include <range/v3/algorithm/minmax.hpp>
0057 #include <range/v3/algorithm/minmax_element.hpp>
0058 #include <range/v3/algorithm/mismatch.hpp>
0059 #include <range/v3/algorithm/move.hpp>
0060 #include <range/v3/algorithm/move_backward.hpp>
0061 #include <range/v3/algorithm/none_of.hpp>
0062 #include <range/v3/algorithm/nth_element.hpp>
0063 #include <range/v3/algorithm/partial_sort.hpp>
0064 #include <range/v3/algorithm/partial_sort_copy.hpp>
0065 #include <range/v3/algorithm/partition.hpp>
0066 #include <range/v3/algorithm/partition_copy.hpp>
0067 #include <range/v3/algorithm/partition_point.hpp>
0068 #include <range/v3/algorithm/permutation.hpp>
0069 #include <range/v3/algorithm/remove.hpp>
0070 #include <range/v3/algorithm/remove_copy.hpp>
0071 #include <range/v3/algorithm/remove_copy_if.hpp>
0072 #include <range/v3/algorithm/remove_if.hpp>
0073 #include <range/v3/algorithm/replace.hpp>
0074 #include <range/v3/algorithm/replace_copy.hpp>
0075 #include <range/v3/algorithm/replace_copy_if.hpp>
0076 #include <range/v3/algorithm/replace_if.hpp>
0077 #include <range/v3/algorithm/reverse.hpp>
0078 #include <range/v3/algorithm/reverse_copy.hpp>
0079 #include <range/v3/algorithm/rotate.hpp>
0080 #include <range/v3/algorithm/rotate_copy.hpp>
0081 #include <range/v3/algorithm/sample.hpp>
0082 #include <range/v3/algorithm/search.hpp>
0083 #include <range/v3/algorithm/search_n.hpp>
0084 #include <range/v3/algorithm/set_algorithm.hpp>
0085 #include <range/v3/algorithm/shuffle.hpp>
0086 #include <range/v3/algorithm/sort.hpp>
0087 #include <range/v3/algorithm/stable_partition.hpp>
0088 #include <range/v3/algorithm/stable_sort.hpp>
0089 #include <range/v3/algorithm/starts_with.hpp>
0090 #include <range/v3/algorithm/swap_ranges.hpp>
0091 #include <range/v3/algorithm/transform.hpp>
0092 #include <range/v3/algorithm/unique.hpp>
0093 #include <range/v3/algorithm/unique_copy.hpp>
0094 #include <range/v3/algorithm/unstable_remove_if.hpp>
0095 #include <range/v3/algorithm/upper_bound.hpp>
0096 #include <range/v3/detail/config.hpp>
0097 
0098 // BUGBUG
0099 #include <range/v3/algorithm/aux_/equal_range_n.hpp>
0100 #include <range/v3/algorithm/aux_/lower_bound_n.hpp>
0101 #include <range/v3/algorithm/aux_/merge_n.hpp>
0102 #include <range/v3/algorithm/aux_/merge_n_with_buffer.hpp>
0103 #include <range/v3/algorithm/aux_/sort_n_with_buffer.hpp>
0104 #include <range/v3/algorithm/aux_/upper_bound_n.hpp>
0105 
0106 #endif