utility.hpp 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. // (C) Copyright John Maddock 2005.
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef BOOST_TR1_UTILITY_HPP_INCLUDED
  6. # define BOOST_TR1_UTILITY_HPP_INCLUDED
  7. # include <boost/tr1/detail/config.hpp>
  8. #ifdef BOOST_HAS_TR1_UTILITY
  9. # if defined(BOOST_HAS_INCLUDE_NEXT) && !defined(BOOST_TR1_DISABLE_INCLUDE_NEXT)
  10. # include_next BOOST_TR1_HEADER(utility)
  11. # else
  12. # include <boost/tr1/detail/config_all.hpp>
  13. # include BOOST_TR1_STD_HEADER(BOOST_TR1_PATH(utility))
  14. # endif
  15. #else
  16. #if defined(BOOST_TR1_USE_OLD_TUPLE)
  17. #include <boost/type_traits/integral_constant.hpp>
  18. #include <boost/type_traits/add_const.hpp>
  19. #include <boost/type_traits/add_reference.hpp>
  20. #include <boost/mpl/if.hpp>
  21. namespace std{ namespace tr1{
  22. template <class T> struct tuple_size; // forward declaration
  23. template < int I, class T> struct tuple_element; // forward declaration
  24. template <class T1, class T2>
  25. struct tuple_size< ::std::pair<T1, T2> >
  26. : public ::boost::integral_constant< ::std::size_t, 2>
  27. {
  28. };
  29. template <class T1, class T2>
  30. struct tuple_element<0, ::std::pair<T1, T2> >
  31. {
  32. typedef typename std::pair<T1, T2>::first_type type;
  33. };
  34. template <class T1, class T2>
  35. struct tuple_element<1, std::pair<T1, T2> >
  36. {
  37. typedef typename std::pair<T1, T2>::second_type type;
  38. };
  39. namespace tuple_detail{
  40. template <int I, class T1, class T2>
  41. struct tuple_get_result
  42. {
  43. typedef typename boost::mpl::if_c<I==0, T1, T2>::type t1;
  44. typedef typename boost::add_reference<t1>::type type;
  45. };
  46. template <int I, class T1, class T2>
  47. struct const_tuple_get_result
  48. {
  49. typedef typename boost::mpl::if_c<I==0, T1, T2>::type t1;
  50. # if BOOST_WORKAROUND( __BORLANDC__, BOOST_TESTED_AT( 0x582))
  51. // I have absolutely no idea why add_const is not working here for Borland!
  52. // It passes all other free-standing tests, some strange interaction going on
  53. typedef typename boost::add_reference< const t1 >::type type;
  54. # else
  55. typedef typename boost::add_const<t1>::type t2;
  56. typedef typename boost::add_reference<t2>::type type;
  57. # endif
  58. };
  59. template<int I, class T1, class T2>
  60. inline typename tuple_detail::tuple_get_result<I,T1,T2>::type get(std::pair<T1, T2>& p, const ::boost::true_type&)
  61. {
  62. return p.first;
  63. }
  64. template<int I, class T1, class T2>
  65. inline typename tuple_detail::const_tuple_get_result<I,T1,T2>::type get(const std::pair<T1, T2>& p, const ::boost::true_type&)
  66. {
  67. return p.first;
  68. }
  69. template<int I, class T1, class T2>
  70. inline typename tuple_detail::tuple_get_result<I,T1,T2>::type get(std::pair<T1, T2>& p, const ::boost::false_type&)
  71. {
  72. return p.second;
  73. }
  74. template<int I, class T1, class T2>
  75. inline typename tuple_detail::const_tuple_get_result<I,T1,T2>::type get(const std::pair<T1, T2>& p, const ::boost::false_type&)
  76. {
  77. return p.second;
  78. }
  79. }
  80. template<int I, class T1, class T2>
  81. inline typename tuple_detail::tuple_get_result<I,T1,T2>::type get(std::pair<T1, T2>& p)
  82. {
  83. return tuple_detail::get<I>(p, boost::integral_constant<bool, I==0>());
  84. }
  85. template<int I, class T1, class T2>
  86. inline typename tuple_detail::const_tuple_get_result<I,T1,T2>::type get(const std::pair<T1, T2>& p)
  87. {
  88. return tuple_detail::get<I>(p, boost::integral_constant<bool, I==0>());
  89. }
  90. } } // namespaces
  91. #else
  92. #include <boost/tr1/tuple.hpp>
  93. #endif
  94. #endif
  95. #endif