std::add_lvalue_reference, std::add_rvalue_reference
From Cppreference
Defined in header <type_traits>
|
||
template< class T >
struct add_lvalue_reference; |
(1) | (C++11 feature) |
template< class T >
struct add_rvalue_reference; |
(2) | (C++11 feature) |
1) If T is an object or function, provides a member typedef type which is T&. If T is an rvalue reference to some type U, then type is U&. Otherwise, type is T.
2) If T is an object or function, provides a member typedef type which is T&&, otherwise type is T.
Contents |
[edit] Member types
Name | Definition |
type | reference to T, or T if not allowed |
[edit] Notes
These type transformations honor reference collapse rules:
std::add_lvalue_reference<T&>::type is T&
std::add_lvalue_reference<T&&>::type is T&
std::add_rvalue_reference<T&>::type is T&
std::add_rvalue_reference<T&&>::type is T&&
[edit] Example
This section is incomplete |
[edit] See also
|
checks if a type is either lvalue reference or rvalue reference (class template) |
||
|
removes reference from the given type (class template) |