LibreOffice Module onlineupdate (master) 1
|
IsRvalueReference determines whether a type is an rvalue reference. More...
#include <TypeTraits.h>
Additional Inherited Members | |
Public Types inherited from mozilla::IntegralConstant< T, Value > | |
typedef T | ValueType |
typedef IntegralConstant< T, Value > | Type |
Static Public Attributes inherited from mozilla::IntegralConstant< T, Value > | |
static const T | value = Value |
IsRvalueReference determines whether a type is an rvalue reference.
mozilla::IsRvalueReference<struct S*>::value is false; mozilla::IsRvalueReference<int**>::value is false; mozilla::IsRvalueReference<void (*)(void)>::value is false; mozilla::IsRvalueReference<int>::value is false; mozilla::IsRvalueReference<struct S>::value is false; mozilla::IsRvalueReference<struct S*&>::value is false; mozilla::IsRvalueReference<struct S&&>::value is true.
Definition at line 223 of file TypeTraits.h.