LibreOffice Module onlineupdate (master) 1
List of all members
mozilla::IsRvalueReference< T > Struct Template Reference

IsRvalueReference determines whether a type is an rvalue reference. More...

#include <TypeTraits.h>

Inheritance diagram for mozilla::IsRvalueReference< T >:
[legend]
Collaboration diagram for mozilla::IsRvalueReference< T >:
[legend]

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
 

Detailed Description

template<typename T>
struct mozilla::IsRvalueReference< T >

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.


The documentation for this struct was generated from the following file: