IsBLASCompatible.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_TYPETRAITS_ISBLASCOMPATIBLE_H_
36 #define _BLAZE_MATH_TYPETRAITS_ISBLASCOMPATIBLE_H_
37 
38 
39 //*************************************************************************************************
40 // Includes
41 //*************************************************************************************************
42 
48 
49 
50 namespace blaze {
51 
52 //=================================================================================================
53 //
54 // CLASS DEFINITION
55 //
56 //=================================================================================================
57 
58 //*************************************************************************************************
78 template< typename T >
80  : public BoolConstant< IsFloat_v<T> || IsDouble_v<T> || IsComplexFloat_v<T> || IsComplexDouble_v<T> >
81 {};
82 //*************************************************************************************************
83 
84 
85 //*************************************************************************************************
98 template< typename T >
100 //*************************************************************************************************
101 
102 } // namespace blaze
103 
104 #endif
Generic wrapper for a compile time constant integral value.The IntegralConstant class template repres...
Definition: IntegralConstant.h:71
Header file for the IsFloat type trait.
Header file for the IsComplexDouble type trait.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Header file for the IsDouble type trait.
Compile time check for data types.This type trait tests whether or not the given template parameter i...
Definition: IsBLASCompatible.h:79
constexpr bool IsBLASCompatible_v
Auxiliary variable template for the IsBLASCompatible type trait.The IsBLASCompatible_v variable templ...
Definition: IsBLASCompatible.h:99
Header file for the IsComplexFloat type trait.
Header file for the IntegralConstant class template.