has_post_decrement.qbk 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. [/
  2. (C) Copyright 2009-2011 Frederic Bron.
  3. Distributed under the Boost Software License, Version 1.0.
  4. (See accompanying file LICENSE_1_0.txt or copy at
  5. http://www.boost.org/LICENSE_1_0.txt).
  6. ]
  7. [section:has_post_decrement has_post_decrement]
  8. template <class Lhs, class Ret=dont_care>
  9. struct has_post_decrement : public __tof {};
  10. __inherit
  11. If (i) `lhs` of type `Lhs` can be used in expression `lhs--`,
  12. and (ii) `Ret=dont_care` or the result of expression `lhs--` is convertible to `Ret`
  13. then inherits from __true_type,
  14. otherwise inherits from __false_type.
  15. The default behaviour (`Ret=dont_care`) is to not check for the return value of postfix `operator--`.
  16. If `Ret` is different from the default `dont_care` type, the return value is checked to be convertible to `Ret`.
  17. Convertible to `Ret` means that the return value of the operator can be used as argument to a function expecting `Ret`:
  18. ``
  19. void f(Ret);
  20. Lhs lhs;
  21. f(lhs--); // is valid if has_post_decrement<Lhs, Ret>::value==true
  22. ``
  23. If `Ret=void`, the return type is checked to be exactly `void`.
  24. __header `#include <boost/type_traits/has_post_decrement.hpp>` or `#include <boost/type_traits/has_operator.hpp>` or `#include <boost/type_traits.hpp>`
  25. [has_binary_operator_compat]
  26. __examples
  27. [:`has_post_decrement<Lhs, Ret>::value_type` is the type `bool`.]
  28. [:`has_post_decrement<Lhs, Ret>::value` is a `bool` integral constant expression.]
  29. [:`has_post_decrement<int>::value` is a `bool` integral constant expression that evaluates to `true`.]
  30. [:`has_post_decrement<long>` inherits from `__true_type`.]
  31. [:`has_post_decrement<int, int>` inherits from `__true_type`.]
  32. [:`has_post_decrement<int, long>` inherits from `__true_type`.]
  33. [:`has_post_decrement<double, double>` inherits from `__true_type`.]
  34. [:`has_post_decrement<double, int>` inherits from `__true_type`.]
  35. [:`has_post_decrement<bool>` inherits from `__false_type`.]
  36. [:`has_post_decrement<const int>` inherits from `__false_type`.]
  37. [:`has_post_decrement<void*>` inherits from `__false_type`.]
  38. [:`has_post_decrement<int, std::string>` inherits from `__false_type`.]
  39. [*See also:] [link boost_typetraits.category.value_traits.operators Operator Type Traits]
  40. [*Known issues:]
  41. * This trait cannot detect whether postfix `operator--` is public or not:
  42. if `operator--` is defined as a private member of `Lhs` then
  43. instantiating `has_post_decrement<Lhs>` will produce a compiler error.
  44. For this reason `has_post_decrement` cannot be used to determine whether a type has a public `operator--` or not.
  45. ``
  46. struct A { private: void operator--(int); };
  47. boost::has_post_decrement<A>::value; // error: A::operator--(int) is private
  48. ``
  49. * There is an issue if the operator exists only for type `A` and `B` is
  50. convertible to `A`. In this case, the compiler will report an ambiguous overload.
  51. ``
  52. struct A { };
  53. void operator--(const A&, int);
  54. struct B { operator A(); };
  55. boost::has_post_decrement<A>::value; // this is fine
  56. boost::has_post_decrement<B>::value; // error: ambiguous overload
  57. ``
  58. * There is an issue when applying this trait to template classes.
  59. If `operator--` is defined but does not bind for a given template type,
  60. it is still detected by the trait which returns `true` instead of `false`.
  61. Example:
  62. ``
  63. #include <boost/type_traits/has_post_decrement.hpp>
  64. #include <iostream>
  65. template <class T>
  66. struct contains { T data; };
  67. template <class T>
  68. bool operator--(const contains<T> &lhs, int) {
  69. return f(lhs.data);
  70. }
  71. class bad { };
  72. class good { };
  73. bool f(const good&, const good&) { }
  74. int main() {
  75. std::cout<<std::boolalpha;
  76. // works fine for contains<good>
  77. std::cout<<boost::has_post_decrement< contains< good > >::value<<'\n'; // true
  78. contains<good> g;
  79. g--; // ok
  80. // does not work for contains<bad>
  81. std::cout<<boost::has_post_decrement< contains< bad > >::value<<'\n'; // true, should be false
  82. contains<bad> b;
  83. b--; // compile time error
  84. return 0;
  85. }
  86. ``
  87. * `volatile` qualifier is not properly handled and would lead to undefined behavior
  88. [prefix_operator_known_issues has_post_decrement..--]
  89. [endsect]