annotate DEPENDENCIES/generic/include/boost/range/detail/end.hpp @ 125:34e428693f5d vext

Vext -> Repoint
author Chris Cannam
date Thu, 14 Jun 2018 11:15:39 +0100
parents c530137014c0
children
rev   line source
Chris@16 1 // Boost.Range library
Chris@16 2 //
Chris@16 3 // Copyright Thorsten Ottosen 2003-2004. Use, modification and
Chris@16 4 // distribution is subject to the Boost Software License, Version
Chris@16 5 // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
Chris@16 6 // http://www.boost.org/LICENSE_1_0.txt)
Chris@16 7 //
Chris@16 8 // For more information, see http://www.boost.org/libs/range/
Chris@16 9 //
Chris@16 10
Chris@16 11 #ifndef BOOST_RANGE_DETAIL_END_HPP
Chris@16 12 #define BOOST_RANGE_DETAIL_END_HPP
Chris@16 13
Chris@16 14 #include <boost/config.hpp> // BOOST_MSVC
Chris@16 15 #include <boost/detail/workaround.hpp>
Chris@16 16
Chris@101 17 #include <boost/range/detail/implementation_help.hpp>
Chris@101 18 #include <boost/range/iterator.hpp>
Chris@101 19 #include <boost/range/detail/common.hpp>
Chris@16 20
Chris@16 21 namespace boost
Chris@16 22 {
Chris@16 23 namespace range_detail
Chris@16 24 {
Chris@16 25 template< typename T >
Chris@16 26 struct range_end;
Chris@16 27
Chris@16 28 //////////////////////////////////////////////////////////////////////
Chris@16 29 // default
Chris@16 30 //////////////////////////////////////////////////////////////////////
Chris@16 31
Chris@16 32 template<>
Chris@16 33 struct range_end<std_container_>
Chris@16 34 {
Chris@16 35 template< typename C >
Chris@16 36 static BOOST_RANGE_DEDUCED_TYPENAME range_iterator<C>::type
Chris@16 37 fun( C& c )
Chris@16 38 {
Chris@16 39 return c.end();
Chris@16 40 };
Chris@16 41 };
Chris@16 42
Chris@16 43 //////////////////////////////////////////////////////////////////////
Chris@16 44 // pair
Chris@16 45 //////////////////////////////////////////////////////////////////////
Chris@16 46
Chris@16 47 template<>
Chris@16 48 struct range_end<std_pair_>
Chris@16 49 {
Chris@16 50 template< typename P >
Chris@16 51 static BOOST_RANGE_DEDUCED_TYPENAME range_iterator<P>::type
Chris@16 52 fun( const P& p )
Chris@16 53 {
Chris@16 54 return p.second;
Chris@16 55 }
Chris@16 56 };
Chris@16 57
Chris@16 58 //////////////////////////////////////////////////////////////////////
Chris@16 59 // array
Chris@16 60 //////////////////////////////////////////////////////////////////////
Chris@16 61
Chris@16 62 template<>
Chris@16 63 struct range_end<array_>
Chris@16 64 {
Chris@16 65 template<typename T>
Chris@16 66 static BOOST_RANGE_DEDUCED_TYPENAME remove_extent<T>::type* fun(T& t)
Chris@16 67 {
Chris@16 68 return t + remove_extent<T>::size;
Chris@16 69 }
Chris@16 70 };
Chris@16 71
Chris@16 72 } // namespace 'range_detail'
Chris@16 73
Chris@16 74 namespace range_adl_barrier
Chris@16 75 {
Chris@16 76 template< typename C >
Chris@16 77 inline BOOST_RANGE_DEDUCED_TYPENAME range_iterator<C>::type
Chris@16 78 end( C& c )
Chris@16 79 {
Chris@16 80 return range_detail::range_end< BOOST_RANGE_DEDUCED_TYPENAME range_detail::range<C>::type >::fun( c );
Chris@16 81 }
Chris@16 82 } // namespace range_adl_barrier
Chris@16 83
Chris@16 84 } // namespace 'boost'
Chris@16 85
Chris@16 86 #endif