Blaze  3.6
Less.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_UTIL_MPL_LESS_H_
36 #define _BLAZE_UTIL_MPL_LESS_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 T1 // The type of the left-hand side operand
73  , typename T2 > // The type of the right-hand side operand
74 using Less_t = Bool_t< ( T1::value < T2::value ) >;
75 //*************************************************************************************************
76 
77 
78 //*************************************************************************************************
91 template< typename T1 // The type of the left-hand side operand
92  , typename T2 > // The type of the right-hand side operand
93 constexpr bool Less_v = Less_t<T1,T2>::value;
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:72
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
constexpr bool Less_v
Auxiliary variable template for the Less_t alias.The Less_v variable template provides a convenient s...
Definition: Less.h:93
Header file for the IntegralConstant class template.