blob: 975e1566ea74291e73df8e50587b3fc8f7278d27 [file] [log] [blame]
Brian Silverman4a2409e2018-08-04 23:24:02 -07001[/
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
8[section:is_rvalue_reference is_rvalue_reference]
9 template <class T>
10 struct is_rvalue_reference : public __tof {};
11
12__inherit If T is an rvalue reference type
13then inherits from __true_type,
14otherwise inherits from __false_type.
15
16__std_ref 3.9.2 and 8.3.2.
17
18[all_compilers]
19
20__header ` #include <boost/type_traits/is_rvalue_reference.hpp>` or ` #include <boost/type_traits.hpp>`
21
22__examples
23
24[:`is_rvalue_reference<int&&>` inherits from `__true_type`.]
25
26[:`is_rvalue_reference<int const&&>::type` is the type `__true_type`.]
27
28[:`is_rvalue_reference<int const&>::type` is the type `__false_type`.]
29
30[:`is_rvalue_reference<int (&&)(long)>::value` is an integral constant
31expression that evaluates to /true/ (the argument in this case is
32an rvalue reference to a function).]
33
34[:`is_rvalue_reference<T>::value_type` is the type `bool`.]
35
36[endsect]
37