add_rvalue_reference.qbk 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. [/
  2. Copyright 2010 John Maddock.
  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:add_rvalue_reference add_rvalue_reference]
  8. template <class T>
  9. struct add_rvalue_reference
  10. {
  11. typedef __below type;
  12. };
  13. template <class T> using add_rvalue_reference_t = typename add_rvalue_reference<T>::type; // C++11 and above
  14. __type If `T` names an object or function type then the member typedef type
  15. shall name `T&&`; otherwise, type shall name `T`. ['\[Note: This rule reflects
  16. the semantics of reference collapsing. For example, when a type `T` names
  17. a type U&, the type `add_rvalue_reference<T>::type` is not an rvalue
  18. reference. -end note\]].
  19. __std_ref 20.7.6.2.
  20. __header ` #include <boost/type_traits/add_rvalue_reference.hpp>` or ` #include <boost/type_traits.hpp>`
  21. [table Examples
  22. [ [Expression] [Result Type]]
  23. [[`add_rvalue_reference<int>::type`][`int&&`]]
  24. [[`add_rvalue_reference<int const&>::type`] [`int const&`]]
  25. [[`add_rvalue_reference<int*>::type`] [`int*&&`]]
  26. [[`add_rvalue_reference<int*&>::type`] [`int*&`]]
  27. [[`add_rvalue_reference<int&&>::type`][`int&&`]]
  28. [[`add_rvalue_reference<void>::type`][`void`]]
  29. ]
  30. __compat In the absence of rvalue-reference support this trait has no effect.
  31. [endsect]