35 #ifndef _BLAZE_UTIL_TYPETRAITS_ISCHARACTER_H_ 36 #define _BLAZE_UTIL_TYPETRAITS_ISCHARACTER_H_ 74 template<
typename T >
96 struct IsCharacter<signed char>
107 struct IsCharacter<unsigned char>
118 struct IsCharacter<wchar_t>
127 template<
typename T >
129 struct IsCharacter<const T>
130 :
public IsCharacter<T>::Type
138 template<
typename T >
140 struct IsCharacter<volatile T>
141 :
public IsCharacter<T>::Type
149 template<
typename T >
151 struct IsCharacter<const volatile T>
152 :
public IsCharacter<T>::Type
171 template<
typename T >
Generic wrapper for a compile time constant integral value.The IntegralConstant class template repres...
Definition: IntegralConstant.h:72
BoolConstant< true > TrueType
Type traits base class.The TrueType class is used as base class for type traits and value traits that...
Definition: IntegralConstant.h:132
Compile time check for character types.This type trait tests whether or not the given template parame...
Definition: IsCharacter.h:75
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
constexpr bool IsCharacter_v
Auxiliary variable template for the IsCharacter type trait.The IsCharacter_v variable template provid...
Definition: IsCharacter.h:172
Header file for the IntegralConstant class template.