Blaze 3.9
Min.h
Go to the documentation of this file.
1//=================================================================================================
33//=================================================================================================
34
35#ifndef _BLAZE_UTIL_MPL_MIN_H_
36#define _BLAZE_UTIL_MPL_MIN_H_
37
38
39//*************************************************************************************************
40// Includes
41//*************************************************************************************************
42
43#include <blaze/util/mpl/If.h>
44#include <blaze/util/mpl/Less.h>
45
46
47namespace blaze {
48
49//=================================================================================================
50//
51// CLASS DEFINITION
52//
53//=================================================================================================
54
55//*************************************************************************************************
71template< typename T1 // Type of the first compile time value
72 , typename T2 > // Type of the second compile time value
74//*************************************************************************************************
75
76} // namespace blaze
77
78#endif
Header file for the If class template.
If_t< Less_t< T1, T2 >::value, T1, T2 > Min_t
Compile time value evaluation.
Definition: Min.h:73
typename If< Condition >::template Type< T1, T2 > If_t
Auxiliary alias template for the If class template.
Definition: If.h:108
Header file for the Less_t alias template.