CrossTrait.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_TRAITS_CROSSTRAIT_H_
36 #define _BLAZE_MATH_TRAITS_CROSSTRAIT_H_
37 
38 
39 //*************************************************************************************************
40 // Includes
41 //*************************************************************************************************
42 
43 #include <blaze/util/InvalidType.h>
46 
47 
48 namespace blaze {
49 
50 //=================================================================================================
51 //
52 // CLASS DEFINITION
53 //
54 //=================================================================================================
55 
56 //*************************************************************************************************
108 template< typename T1 // Type of the left-hand side operand
109  , typename T2 > // Type of the right-hand side operand
111 {
112  //**********************************************************************************************
114  using Type = INVALID_TYPE;
116  //**********************************************************************************************
117 };
118 //*************************************************************************************************
119 
120 
121 //*************************************************************************************************
134 template< typename T1, typename T2 >
136 //*************************************************************************************************
137 
138 } // namespace blaze
139 
140 #endif
Header file for the IsVolatile type trait.
Base template for the CrossTrait class.
Definition: CrossTrait.h:110
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
typename CrossTrait< T1, T2 >::Type CrossTrait_
Auxiliary alias declaration for the CrossTrait class template.The CrossTrait_ alias declaration provi...
Definition: CrossTrait.h:135
Header file for the IsConst type trait.
Utility type for generic codes.