35 #ifndef _BLAZE_UTIL_TYPETRAITS_ISNUMERIC_H_ 36 #define _BLAZE_UTIL_TYPETRAITS_ISNUMERIC_H_ 78 template<
typename T >
80 :
public BoolConstant< IsBuiltin_v<T> && !IsBoolean_v<T> && !IsVoid_v<T> >
87 template<
typename T >
98 template<
typename T >
100 struct IsNumeric< const complex<T> >
101 :
public IsNumeric<T>::Type
109 template<
typename T >
111 struct IsNumeric< volatile complex<T> >
112 :
public IsNumeric<T>::Type
120 template<
typename T >
122 struct IsNumeric< const volatile complex<T> >
123 :
public IsNumeric<T>::Type
142 template<
typename T >
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:58
constexpr bool IsNumeric_v
Auxiliary variable template for the IsNumeric type trait.The IsNumeric_v variable template provides a...
Definition: IsNumeric.h:143
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.