35 #ifndef _BLAZE_UTIL_TYPETRAITS_ISNUMERIC_H_
36 #define _BLAZE_UTIL_TYPETRAITS_ISNUMERIC_H_
78 template<
typename T >
86 template<
typename T >
96 template<
typename T >
98 struct IsNumeric< const complex<T> > :
public IsNumeric<T>::Type
106 template<
typename T >
108 struct IsNumeric< volatile complex<T> > :
public IsNumeric<T>::Type
116 template<
typename T >
118 struct IsNumeric< const volatile complex<T> > :
public IsNumeric<T>::Type
Compile time check for numeric types.This type trait tests whether or not the given template paramete...
Definition: IsNumeric.h:79
Generic wrapper for a compile time constant integral value.The IntegralConstant class template repres...
Definition: IntegralConstant.h:71
Header file for the IsVoid type trait.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
Header file for the IsBoolean type trait.
Header file for the IsBuiltin type trait.
Header file for the IntegralConstant class template.
Header file for the complex data type.