35#ifndef _BLAZE_UTIL_TYPETRAITS_ISCHARACTER_H_
36#define _BLAZE_UTIL_TYPETRAITS_ISCHARACTER_H_
96struct IsCharacter<signed char>
107struct IsCharacter<unsigned char>
118struct IsCharacter<wchar_t>
128template<
typename T >
129struct IsCharacter<const T>
130 :
public IsCharacter<T>::Type
139template<
typename T >
140struct IsCharacter<volatile T>
141 :
public IsCharacter<T>::Type
150template<
typename T >
151struct IsCharacter<const volatile T>
152 :
public IsCharacter<T>::Type
171template<
typename T >
Header file for the IntegralConstant class template.
constexpr bool IsCharacter_v
Auxiliary variable template for the IsCharacter type trait.
Definition: IsCharacter.h:172
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 character types.
Definition: IsCharacter.h:77