35#ifndef _BLAZE_UTIL_TYPETRAITS_ISLONG_H_
36#define _BLAZE_UTIL_TYPETRAITS_ISLONG_H_
96struct IsLong<const long>
107struct IsLong<volatile long>
118struct IsLong<const volatile long>
129struct IsLong<unsigned long>
140struct IsLong<const unsigned long>
151struct IsLong<volatile unsigned long>
162struct IsLong<const volatile unsigned long>
182template<
typename T >
Header file for the IntegralConstant class template.
constexpr bool IsLong_v
Auxiliary variable template for the IsLong type trait.
Definition: IsLong.h:183
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 long integer types.
Definition: IsLong.h:77