35#ifndef _BLAZE_UTIL_TYPETRAITS_ISINTEGER_H_
36#define _BLAZE_UTIL_TYPETRAITS_ISINTEGER_H_
100struct IsInteger<const int>
111struct IsInteger<volatile int>
122struct IsInteger<const volatile int>
133struct IsInteger<unsigned int>
144struct IsInteger<const unsigned int>
155struct IsInteger<volatile unsigned int>
166struct IsInteger<const volatile unsigned int>
186template<
typename T >
Header file for the IntegralConstant class template.
constexpr bool IsInteger_v
Auxiliary variable template for the IsInteger type trait.
Definition: IsInteger.h:187
BoolConstant< true > TrueType
Type traits base class.
Definition: IntegralConstant.h:132
Generic wrapper for a compile time constant integral value.
Definition: IntegralConstant.h:74
Compile time check for integer types.
Definition: IsInteger.h:81