Equal.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_UTIL_MPL_EQUAL_H_
36 #define _BLAZE_UTIL_MPL_EQUAL_H_
37 
38 
39 //*************************************************************************************************
40 // Includes
41 //*************************************************************************************************
42 
43 #include <blaze/util/mpl/Bool.h>
44 
45 
46 namespace blaze {
47 
48 //=================================================================================================
49 //
50 // CLASS DEFINITION
51 //
52 //=================================================================================================
53 
54 //*************************************************************************************************
71 template< typename T1 // The type of the left-hand side operand
72  , typename T2 > // The type of the right-hand side operand
74 //*************************************************************************************************
75 
76 
77 //*************************************************************************************************
90 template< typename T1 // The type of the left-hand side operand
91  , typename T2 > // The type of the right-hand side operand
92 constexpr bool Equal_v = Equal<T1,T2>::value;
93 //*************************************************************************************************
94 
95 } // namespace blaze
96 
97 #endif
Generic wrapper for a compile time constant integral value.The IntegralConstant class template repres...
Definition: IntegralConstant.h:71
constexpr bool Equal_v
Auxiliary variable template for the Equal alias.The Equal_v variable template provides a convenient s...
Definition: Equal.h:92
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Header file for the Bool class template.