Blaze 3.9
blaze::IsBLASCompatible< T > Struct Template Reference

Compile time check for data types. More...

#include <IsBLASCompatible.h>

Inherits blaze::IntegralConstant< T, N >.

Detailed Description

template<typename T>
struct blaze::IsBLASCompatible< 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.

blaze::IsBLASCompatible< complex<float> > // Is derived from TrueType
blaze::IsBLASCompatible< long double > // Is derived from FalseType
Compile time check for data types.
Definition: IsBLASCompatible.h:81

The documentation for this struct was generated from the following file: