Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
3 // Copyright Thorsten Ottosen 2003-2004. Use, modification and
4 // distribution is subject to the Boost Software License, Version
5 // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6 // http://www.boost.org/LICENSE_1_0.txt)
8 // For more information, see http://www.boost.org/libs/range/
11 #ifndef BOOST_RANGE_RBEGIN_HPP
12 #define BOOST_RANGE_RBEGIN_HPP
14 #if defined(_MSC_VER) && (_MSC_VER >= 1200)
18 #include <boost/range/end.hpp>
19 #include <boost/range/reverse_result_iterator.hpp>
20 #include <boost/range/reverse_iterator.hpp>
21 #include <boost/range/const_reverse_iterator.hpp>
26 #ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
29 inline BOOST_DEDUCED_TYPENAME range_reverse_result_iterator<C>::type
32 return BOOST_DEDUCED_TYPENAME range_reverse_result_iterator<C>::type( end( c ) );
38 inline BOOST_DEDUCED_TYPENAME range_reverse_iterator<
39 typename remove_const<C>::type >::type
42 typedef BOOST_DEDUCED_TYPENAME range_reverse_iterator<
43 typename remove_const<C>::type >::type
45 return iter_type( boost::end( c ) );
49 inline BOOST_DEDUCED_TYPENAME range_const_reverse_iterator<C>::type
52 typedef BOOST_DEDUCED_TYPENAME range_const_reverse_iterator<C>::type
54 return iter_type( boost::end( c ) );
57 #endif // BOOST_NO_FUNCTION_TEMPLATE_ORDERING
60 inline BOOST_DEDUCED_TYPENAME range_const_reverse_iterator<T>::type
61 const_rbegin( const T& r )
63 return boost::rbegin( r );
66 } // namespace 'boost'