You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

109 lines
4.2KB

  1. /// \file
  2. // Range v3 library
  3. //
  4. // Copyright Eric Niebler 2013-present
  5. //
  6. // Use, modification and distribution is subject to the
  7. // Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at
  9. // http://www.boost.org/LICENSE_1_0.txt)
  10. //
  11. // Project home: https://github.com/ericniebler/range-v3
  12. //
  13. #ifndef RANGES_V3_ALGORITHM_HPP
  14. #define RANGES_V3_ALGORITHM_HPP
  15. #include <range/v3/detail/config.hpp>
  16. RANGES_DISABLE_WARNINGS
  17. #include <range/v3/algorithm/adjacent_find.hpp>
  18. #include <range/v3/algorithm/adjacent_remove_if.hpp>
  19. #include <range/v3/algorithm/all_of.hpp>
  20. #include <range/v3/algorithm/any_of.hpp>
  21. #include <range/v3/algorithm/binary_search.hpp>
  22. #include <range/v3/algorithm/copy.hpp>
  23. #include <range/v3/algorithm/copy_backward.hpp>
  24. #include <range/v3/algorithm/copy_if.hpp>
  25. #include <range/v3/algorithm/copy_n.hpp>
  26. #include <range/v3/algorithm/count.hpp>
  27. #include <range/v3/algorithm/count_if.hpp>
  28. #include <range/v3/algorithm/ends_with.hpp>
  29. #include <range/v3/algorithm/equal.hpp>
  30. #include <range/v3/algorithm/equal_range.hpp>
  31. #include <range/v3/algorithm/fill.hpp>
  32. #include <range/v3/algorithm/fill_n.hpp>
  33. #include <range/v3/algorithm/find.hpp>
  34. #include <range/v3/algorithm/find_end.hpp>
  35. #include <range/v3/algorithm/find_first_of.hpp>
  36. #include <range/v3/algorithm/find_if.hpp>
  37. #include <range/v3/algorithm/find_if_not.hpp>
  38. #include <range/v3/algorithm/for_each.hpp>
  39. #include <range/v3/algorithm/for_each_n.hpp>
  40. #include <range/v3/algorithm/generate.hpp>
  41. #include <range/v3/algorithm/generate_n.hpp>
  42. #include <range/v3/algorithm/heap_algorithm.hpp>
  43. #include <range/v3/algorithm/inplace_merge.hpp>
  44. #include <range/v3/algorithm/is_partitioned.hpp>
  45. #include <range/v3/algorithm/is_sorted.hpp>
  46. #include <range/v3/algorithm/is_sorted_until.hpp>
  47. #include <range/v3/algorithm/lexicographical_compare.hpp>
  48. #include <range/v3/algorithm/lower_bound.hpp>
  49. #include <range/v3/algorithm/max.hpp>
  50. #include <range/v3/algorithm/max_element.hpp>
  51. #include <range/v3/algorithm/merge.hpp>
  52. #include <range/v3/algorithm/min.hpp>
  53. #include <range/v3/algorithm/min_element.hpp>
  54. #include <range/v3/algorithm/minmax.hpp>
  55. #include <range/v3/algorithm/minmax_element.hpp>
  56. #include <range/v3/algorithm/mismatch.hpp>
  57. #include <range/v3/algorithm/move.hpp>
  58. #include <range/v3/algorithm/move_backward.hpp>
  59. #include <range/v3/algorithm/none_of.hpp>
  60. #include <range/v3/algorithm/nth_element.hpp>
  61. #include <range/v3/algorithm/partial_sort.hpp>
  62. #include <range/v3/algorithm/partial_sort_copy.hpp>
  63. #include <range/v3/algorithm/partition.hpp>
  64. #include <range/v3/algorithm/partition_copy.hpp>
  65. #include <range/v3/algorithm/partition_point.hpp>
  66. #include <range/v3/algorithm/permutation.hpp>
  67. #include <range/v3/algorithm/remove.hpp>
  68. #include <range/v3/algorithm/remove_copy.hpp>
  69. #include <range/v3/algorithm/remove_copy_if.hpp>
  70. #include <range/v3/algorithm/remove_if.hpp>
  71. #include <range/v3/algorithm/replace.hpp>
  72. #include <range/v3/algorithm/replace_copy.hpp>
  73. #include <range/v3/algorithm/replace_copy_if.hpp>
  74. #include <range/v3/algorithm/replace_if.hpp>
  75. #include <range/v3/algorithm/reverse.hpp>
  76. #include <range/v3/algorithm/reverse_copy.hpp>
  77. #include <range/v3/algorithm/rotate.hpp>
  78. #include <range/v3/algorithm/rotate_copy.hpp>
  79. #include <range/v3/algorithm/sample.hpp>
  80. #include <range/v3/algorithm/search.hpp>
  81. #include <range/v3/algorithm/search_n.hpp>
  82. #include <range/v3/algorithm/set_algorithm.hpp>
  83. #include <range/v3/algorithm/shuffle.hpp>
  84. #include <range/v3/algorithm/sort.hpp>
  85. #include <range/v3/algorithm/stable_partition.hpp>
  86. #include <range/v3/algorithm/stable_sort.hpp>
  87. #include <range/v3/algorithm/starts_with.hpp>
  88. #include <range/v3/algorithm/swap_ranges.hpp>
  89. #include <range/v3/algorithm/transform.hpp>
  90. #include <range/v3/algorithm/unique.hpp>
  91. #include <range/v3/algorithm/unique_copy.hpp>
  92. #include <range/v3/algorithm/unstable_remove_if.hpp>
  93. #include <range/v3/algorithm/upper_bound.hpp>
  94. // BUGBUG
  95. #include <range/v3/algorithm/aux_/equal_range_n.hpp>
  96. #include <range/v3/algorithm/aux_/lower_bound_n.hpp>
  97. #include <range/v3/algorithm/aux_/merge_n.hpp>
  98. #include <range/v3/algorithm/aux_/merge_n_with_buffer.hpp>
  99. #include <range/v3/algorithm/aux_/sort_n_with_buffer.hpp>
  100. #include <range/v3/algorithm/aux_/upper_bound_n.hpp>
  101. RANGES_RE_ENABLE_WARNINGS
  102. #endif