LibreOffice Module onlineupdate (master) 1
|
IsPointer determines whether a type is a possibly-CV-qualified pointer type (but not a pointer-to-member type). 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 |
IsPointer determines whether a type is a possibly-CV-qualified pointer type (but not a pointer-to-member type).
mozilla::IsPointer<struct S*>::value is true; mozilla::IsPointer<int*>::value is true; mozilla::IsPointer<int**>::value is true; mozilla::IsPointer<const int*>::value is true; mozilla::IsPointer<int* const>::value is true; mozilla::IsPointer<int* volatile>::value is true; mozilla::IsPointer<void (*)(void)>::value is true; mozilla::IsPointer<int>::value is false; mozilla::IsPointer<struct S>::value is false. mozilla::IsPointer<int(struct S::*)>::value is false
Definition at line 191 of file TypeTraits.h.