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

IsPointer determines whether a type is a possibly-CV-qualified pointer type (but not a pointer-to-member type). More...

#include <TypeTraits.h>

Inheritance diagram for mozilla::IsPointer< T >:
[legend]
Collaboration diagram for mozilla::IsPointer< 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::IsPointer< T >

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.


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