35 #ifndef _BLAZE_UTIL_MPL_IF_H_ 36 #define _BLAZE_UTIL_MPL_IF_H_ 56 template<
bool Condition
106 template<
bool Condition
129 template<
typename T1
133 :
public IfTrue< T1::value, T2, T3 >
151 template<
typename T1
Compile time type selection.The If alias declaration selects one of the two given types T2 and T3 dep...
Definition: If.h:132
typename IfTrue< Condition, T1, T2 >::Type IfTrue_
Auxiliary alias declaration for the IfTrue class template.The IfTrue_ alias declaration provides a co...
Definition: If.h:109
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
typename If< T1, T2, T3 >::Type If_
Auxiliary alias declaration for the If class template.The If_ alias declaration provides a convenient...
Definition: If.h:154
Compile time type selection.The IfTrue class template selects one of the two given types T1 and T2 de...
Definition: If.h:59