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.

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /// \file
  2. // Range v3 library
  3. //
  4. // Copyright Eric Niebler 2019-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_ITERATOR_HPP
  14. #define RANGES_V3_ITERATOR_HPP
  15. #include <range/v3/detail/config.hpp>
  16. RANGES_DISABLE_WARNINGS
  17. #include <range/v3/utility/any.hpp>
  18. #include <range/v3/utility/box.hpp>
  19. #include <range/v3/utility/common_tuple.hpp>
  20. #include <range/v3/utility/common_type.hpp>
  21. #include <range/v3/utility/compressed_pair.hpp>
  22. #include <range/v3/utility/copy.hpp>
  23. #include <range/v3/utility/get.hpp>
  24. #include <range/v3/utility/in_place.hpp>
  25. #include <range/v3/utility/memory.hpp>
  26. #include <range/v3/utility/move.hpp>
  27. #include <range/v3/utility/optional.hpp>
  28. #include <range/v3/utility/polymorphic_cast.hpp>
  29. #include <range/v3/utility/random.hpp>
  30. #include <range/v3/utility/scope_exit.hpp>
  31. #include <range/v3/utility/semiregular_box.hpp>
  32. #include <range/v3/utility/static_const.hpp>
  33. #include <range/v3/utility/swap.hpp>
  34. #include <range/v3/utility/tuple_algorithm.hpp>
  35. #include <range/v3/utility/variant.hpp>
  36. RANGES_RE_ENABLE_WARNINGS
  37. #endif