is_incrementable.hpp 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. // Copyright David Abrahams 2004. Use, modification and distribution is
  2. // subject to the Boost Software License, Version 1.0. (See accompanying
  3. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. #ifndef IS_INCREMENTABLE_DWA200415_HPP
  5. # define IS_INCREMENTABLE_DWA200415_HPP
  6. # include <boost/type_traits/integral_constant.hpp>
  7. # include <boost/type_traits/remove_cv.hpp>
  8. # include <boost/mpl/aux_/lambda_support.hpp>
  9. # include <boost/mpl/bool.hpp>
  10. # include <boost/detail/workaround.hpp>
  11. namespace boost { namespace detail {
  12. // is_incrementable<T> metafunction
  13. //
  14. // Requires: Given x of type T&, if the expression ++x is well-formed
  15. // it must have complete type; otherwise, it must neither be ambiguous
  16. // nor violate access.
  17. // This namespace ensures that ADL doesn't mess things up.
  18. namespace is_incrementable_
  19. {
  20. // a type returned from operator++ when no increment is found in the
  21. // type's own namespace
  22. struct tag {};
  23. // any soaks up implicit conversions and makes the following
  24. // operator++ less-preferred than any other such operator that
  25. // might be found via ADL.
  26. struct any { template <class T> any(T const&); };
  27. // This is a last-resort operator++ for when none other is found
  28. # if BOOST_WORKAROUND(__GNUC__, == 4) && __GNUC_MINOR__ == 0 && __GNUC_PATCHLEVEL__ == 2
  29. }
  30. namespace is_incrementable_2
  31. {
  32. is_incrementable_::tag operator++(is_incrementable_::any const&);
  33. is_incrementable_::tag operator++(is_incrementable_::any const&,int);
  34. }
  35. using namespace is_incrementable_2;
  36. namespace is_incrementable_
  37. {
  38. # else
  39. tag operator++(any const&);
  40. tag operator++(any const&,int);
  41. # endif
  42. # if BOOST_WORKAROUND(__MWERKS__, BOOST_TESTED_AT(0x3202))
  43. # define BOOST_comma(a,b) (a)
  44. # else
  45. // In case an operator++ is found that returns void, we'll use ++x,0
  46. tag operator,(tag,int);
  47. # define BOOST_comma(a,b) (a,b)
  48. # endif
  49. # if defined(BOOST_MSVC)
  50. # pragma warning(push)
  51. # pragma warning(disable:4913) // Warning about operator,
  52. # endif
  53. // two check overloads help us identify which operator++ was picked
  54. char (& check_(tag) )[2];
  55. template <class T>
  56. char check_(T const&);
  57. template <class T>
  58. struct impl
  59. {
  60. static typename boost::remove_cv<T>::type& x;
  61. BOOST_STATIC_CONSTANT(
  62. bool
  63. , value = sizeof(is_incrementable_::check_(BOOST_comma(++x,0))) == 1
  64. );
  65. };
  66. template <class T>
  67. struct postfix_impl
  68. {
  69. static typename boost::remove_cv<T>::type& x;
  70. BOOST_STATIC_CONSTANT(
  71. bool
  72. , value = sizeof(is_incrementable_::check_(BOOST_comma(x++,0))) == 1
  73. );
  74. };
  75. # if defined(BOOST_MSVC)
  76. # pragma warning(pop)
  77. # endif
  78. }
  79. # undef BOOST_comma
  80. template<typename T>
  81. struct is_incrementable :
  82. public boost::integral_constant<bool, boost::detail::is_incrementable_::impl<T>::value>
  83. {
  84. BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_incrementable,(T))
  85. };
  86. template<typename T>
  87. struct is_postfix_incrementable :
  88. public boost::integral_constant<bool, boost::detail::is_incrementable_::postfix_impl<T>::value>
  89. {
  90. BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_postfix_incrementable,(T))
  91. };
  92. } // namespace detail
  93. } // namespace boost
  94. # include <boost/type_traits/detail/bool_trait_undef.hpp>
  95. #endif // IS_INCREMENTABLE_DWA200415_HPP