Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 10:28:00

0001 // Range v3 library
0002 //
0003 //  Copyright Eric Niebler 2013-present
0004 //
0005 //  Use, modification and distribution is subject to the
0006 //  Boost Software License, Version 1.0. (See accompanying
0007 //  file LICENSE_1_0.txt or copy at
0008 //  http://www.boost.org/LICENSE_1_0.txt)
0009 //
0010 // Project home: https://github.com/ericniebler/range-v3
0011 //
0012 
0013 #ifndef RANGES_V3_UTILITY_ITERATOR_HPP
0014 #define RANGES_V3_UTILITY_ITERATOR_HPP
0015 
0016 #include <range/v3/detail/config.hpp>
0017 RANGES_DEPRECATED_HEADER(
0018     R"(This header is deprecated. Please include one of the following depending on your need:
0019     <range/v3/iterator/operations.hpp>,
0020     <range/v3/iterator/insert_iterators.hpp>,
0021     <range/v3/iterator/move_iterators.hpp>,
0022     <range/v3/iterator/reverse_iterator.hpp>,
0023     <range/v3/iterator/stream_iterators.hpp>)")
0024 
0025 #include <range/v3/iterator/insert_iterators.hpp>
0026 #include <range/v3/iterator/move_iterators.hpp>
0027 #include <range/v3/iterator/operations.hpp>
0028 #include <range/v3/iterator/reverse_iterator.hpp>
0029 #include <range/v3/iterator/stream_iterators.hpp>
0030 
0031 #endif