35 #ifndef _BLAZE_MATH_TYPETRAITS_ISLOWER_H_ 36 #define _BLAZE_MATH_TYPETRAITS_ISLOWER_H_ 60 template<
typename T >
struct IsLower;
73 :
public BoolConstant< IsUniLower_v<T> || IsStrictlyLower_v<T> >
76 template<
typename T >
78 :
public IsLower< typename T::ResultType >::Type
114 template<
typename T >
116 :
public IsLowerHelper<T>
126 template<
typename T >
139 template<
typename T >
140 struct IsLower< volatile T >
152 template<
typename T >
153 struct IsLower< const volatile T >
173 template<
typename T >
Compile time check for lower triangular matrices.This type trait tests whether or not the given templ...
Definition: IsLower.h:115
Header file for the IsUniLower type trait.
typename EnableIf< Condition, T >::Type EnableIf_t
Auxiliary type for the EnableIf class template.The EnableIf_t alias declaration provides a convenient...
Definition: EnableIf.h:138
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Header file for the EnableIf class template.
Header file for the IsStrictlyLower type trait.
constexpr bool IsLower_v
Auxiliary variable template for the IsLower type trait.The IsLower_v variable template provides a con...
Definition: IsLower.h:174
IntegralConstant< bool, B > BoolConstant
Generic wrapper for a compile time constant boolean value.The BoolConstant class template represents ...
Definition: IntegralConstant.h:101
constexpr bool IsExpression_v
Auxiliary variable template for the IsExpression type trait.The IsExpression_v variable template prov...
Definition: IsExpression.h:131
Header file for the IntegralConstant class template.
Header file for the IsExpression type trait class.