![]() |
Blaze 3.9
|
Compile time check for data types. More...
#include <IsInvertible.h>
Inherits blaze::IntegralConstant< T, N >.
Compile time check for data types.
This type trait tests whether or not the given template parameter is invertible. The type is considered to be invertible if it is a floating point type (float
, double
, or long double
), any other scalar type with a floating point element type (e.g. complex<float>
, complex<double>
or complex<long double>
) or any dense matrix type with a BLAS compatible element type. If the given type is invertible, 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.