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_END_HPP
12 #define BOOST_RANGE_END_HPP
14 #if defined(_MSC_VER) && (_MSC_VER >= 1200)
18 #include <boost/range/config.hpp>
20 #ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
21 #include <boost/range/detail/end.hpp>
24 #include <boost/range/detail/implementation_help.hpp>
25 #include <boost/range/iterator.hpp>
26 #include <boost/range/const_iterator.hpp>
31 #if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) && \
32 !BOOST_WORKAROUND(__GNUC__, < 3) \
34 namespace range_detail
38 //////////////////////////////////////////////////////////////////////
40 //////////////////////////////////////////////////////////////////////
41 template< typename C
>
42 inline BOOST_DEDUCED_TYPENAME range_iterator
<C
>::type
46 // If you get a compile-error here, it is most likely because
47 // you have not implemented range_begin() properly in
53 //////////////////////////////////////////////////////////////////////
55 //////////////////////////////////////////////////////////////////////
57 template< typename Iterator
>
58 inline Iterator
range_end( const std::pair
<Iterator
,Iterator
>& p
)
63 template< typename Iterator
>
64 inline Iterator
range_end( std::pair
<Iterator
,Iterator
>& p
)
69 //////////////////////////////////////////////////////////////////////
71 //////////////////////////////////////////////////////////////////////
73 template< typename T
, std::size_t sz
>
74 inline const T
* range_end( const T (&a
)[sz
] )
76 return range_detail::array_end
<T
,sz
>( a
);
79 template< typename T
, std::size_t sz
>
80 inline T
* range_end( T (&a
)[sz
] )
82 return range_detail::array_end
<T
,sz
>( a
);
85 #if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) && \
86 !BOOST_WORKAROUND(__GNUC__, < 3) \
88 } // namespace 'range_detail'
92 inline BOOST_DEDUCED_TYPENAME range_iterator
<T
>::type
end( T
& r
)
94 #if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) && \
95 !BOOST_WORKAROUND(__GNUC__, < 3) \
97 using namespace range_detail
;
99 return range_end( r
);
103 inline BOOST_DEDUCED_TYPENAME range_iterator
<const T
>::type
end( const T
& r
)
105 #if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) && \
106 !BOOST_WORKAROUND(__GNUC__, < 3) \
108 using namespace range_detail
;
110 return range_end( r
);
113 } // namespace 'boost'
117 #endif // BOOST_NO_FUNCTION_TEMPLATE_ORDERING
123 inline BOOST_DEDUCED_TYPENAME range_iterator
<const T
>::type
124 const_end( const T
& r
)
126 return boost::end( r
);