![]() |
Compile time check for data types.This type trait tests whether or not the given template parameter is a data type compatible to the BLAS standard. The BLAS standard supports float
, double
, complex<float>
and complex<double>
values. If the type is BLAS compatible, the value member constant is set to true, the nested type definition Type is TrueType, and the class derives from TrueType. Otherwise value is set to false, Type is FalseType, and the class derives from FalseType.
More...
#include <IsBLASCompatible.h>
Inherits blaze::Or< IsFloat< T >, IsDouble< T >, IsComplexFloat< T >, IsComplexDouble< T > >.
Compile time check for data types.
This type trait tests whether or not the given template parameter is a data type compatible to the BLAS standard. The BLAS standard supports float
, double
, complex<float>
and complex<double>
values. If the type is BLAS compatible, the value member constant is set to true, the nested type definition Type is TrueType, and the class derives from TrueType. Otherwise value is set to false, Type is FalseType, and the class derives from FalseType.