end.hpp 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. // Boost.Range library
  2. //
  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)
  7. //
  8. // For more information, see http://www.boost.org/libs/range/
  9. //
  10. #ifndef BOOST_RANGE_END_HPP
  11. #define BOOST_RANGE_END_HPP
  12. #if defined(_MSC_VER)
  13. # pragma once
  14. #endif
  15. #include <boost/range/config.hpp>
  16. #ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
  17. #include <boost/range/detail/end.hpp>
  18. #else
  19. #include <boost/range/detail/implementation_help.hpp>
  20. #include <boost/range/iterator.hpp>
  21. #include <boost/range/const_iterator.hpp>
  22. namespace boost
  23. {
  24. #if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
  25. namespace range_detail
  26. {
  27. #endif
  28. //////////////////////////////////////////////////////////////////////
  29. // primary template
  30. //////////////////////////////////////////////////////////////////////
  31. template< typename C >
  32. inline BOOST_DEDUCED_TYPENAME range_iterator<C>::type
  33. range_end( C& c )
  34. {
  35. //
  36. // If you get a compile-error here, it is most likely because
  37. // you have not implemented range_begin() properly in
  38. // the namespace of C
  39. //
  40. return c.end();
  41. }
  42. //////////////////////////////////////////////////////////////////////
  43. // pair
  44. //////////////////////////////////////////////////////////////////////
  45. template< typename Iterator >
  46. inline Iterator range_end( const std::pair<Iterator,Iterator>& p )
  47. {
  48. return p.second;
  49. }
  50. template< typename Iterator >
  51. inline Iterator range_end( std::pair<Iterator,Iterator>& p )
  52. {
  53. return p.second;
  54. }
  55. //////////////////////////////////////////////////////////////////////
  56. // array
  57. //////////////////////////////////////////////////////////////////////
  58. template< typename T, std::size_t sz >
  59. inline const T* range_end( const T (&a)[sz] )
  60. {
  61. return range_detail::array_end<T,sz>( a );
  62. }
  63. template< typename T, std::size_t sz >
  64. inline T* range_end( T (&a)[sz] )
  65. {
  66. return range_detail::array_end<T,sz>( a );
  67. }
  68. #if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
  69. } // namespace 'range_detail'
  70. #endif
  71. namespace range_adl_barrier
  72. {
  73. template< class T >
  74. inline BOOST_DEDUCED_TYPENAME range_iterator<T>::type end( T& r )
  75. {
  76. #if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
  77. using namespace range_detail;
  78. #endif
  79. return range_end( r );
  80. }
  81. template< class T >
  82. inline BOOST_DEDUCED_TYPENAME range_iterator<const T>::type end( const T& r )
  83. {
  84. #if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
  85. using namespace range_detail;
  86. #endif
  87. return range_end( r );
  88. }
  89. } // namespace range_adl_barrier
  90. } // namespace 'boost'
  91. #endif // BOOST_NO_FUNCTION_TEMPLATE_ORDERING
  92. namespace boost
  93. {
  94. namespace range_adl_barrier
  95. {
  96. template< class T >
  97. inline BOOST_DEDUCED_TYPENAME range_iterator<const T>::type
  98. const_end( const T& r )
  99. {
  100. return boost::range_adl_barrier::end( r );
  101. }
  102. } // namespace range_adl_barrier
  103. using namespace range_adl_barrier;
  104. } // namespace boost
  105. #endif