TransposeFlag.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_TYPETRAITS_TRANSPOSEFLAG_H_
36 #define _BLAZE_MATH_TYPETRAITS_TRANSPOSEFLAG_H_
37 
38 
39 //*************************************************************************************************
40 // Includes
41 //*************************************************************************************************
42 
44 
45 
46 namespace blaze {
47 
48 //=================================================================================================
49 //
50 // CLASS DEFINITION
51 //
52 //=================================================================================================
53 
54 //*************************************************************************************************
72 template< typename T >
74  : public BoolConstant< T::transposeFlag >
75 {};
76 //*************************************************************************************************
77 
78 
79 //*************************************************************************************************
92 template< typename T >
93 constexpr bool TransposeFlag_v = T::transposeFlag;
94 //*************************************************************************************************
95 
96 } // namespace blaze
97 
98 #endif
Generic wrapper for a compile time constant integral value.The IntegralConstant class template repres...
Definition: IntegralConstant.h:71
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Evaluation of the transpose flag of a given matrix type.Via this type trait it is possible to evaluat...
Definition: TransposeFlag.h:73
Header file for the IntegralConstant class template.
constexpr bool TransposeFlag_v
Auxiliary variable template for the TransposeFlag type trait.The TransposeFlag_v variable template pr...
Definition: TransposeFlag.h:93