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

IsClass determines whether a type is a class type (but not a union). More...

#include <TypeTraits.h>

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

Additional Inherited Members

- Public Types inherited from mozilla::IntegralConstant< bool, __is_class(RemoveCV< T >::Type)>
typedef bool ValueType
 
typedef IntegralConstant< bool, ValueType
 
- Static Public Attributes inherited from mozilla::IntegralConstant< bool, __is_class(RemoveCV< T >::Type)>
static const bool value
 

Detailed Description

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

IsClass determines whether a type is a class type (but not a union).

struct S {}; union U {}; mozilla::IsClass<int>::value is false; mozilla::IsClass<const S>::value is true; mozilla::IsClass<U>::value is false;

Definition at line 273 of file TypeTraits.h.


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