35 #ifndef _BLAZE_MATH_TYPETRAITS_ISBLASCOMPATIBLE_H_
36 #define _BLAZE_MATH_TYPETRAITS_ISBLASCOMPATIBLE_H_
65 template<
typename T >
66 struct IsBlasCompatibleHelper
69 enum { value = ( IsFloat<T>::value || IsComplexFloat<T>::value ||
70 IsDouble<T>::value || IsComplexDouble<T>::value ) };
71 typedef typename SelectType<value,TrueType,FalseType>::Type Type;
98 template<
typename T >
104 enum { value = IsBlasCompatibleHelper<T>::value };
105 typedef typename IsBlasCompatibleHelper<T>::Type Type;
Header file for the FalseType type/value trait base class.
Header file for the IsFloat type trait.
Header file for the IsComplexDouble type trait.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
Header file for the IsDouble type trait.
Header file for the SelectType class template.
Compile time check for data types.This type trait tests whether or not the given template parameter i...
Definition: IsBlasCompatible.h:99
Header file for the IsComplexFloat type trait.
Header file for the TrueType type/value trait base class.