35 #ifndef _BLAZE_MATH_TYPETRAITS_ISSTRICTLYUPPER_H_ 36 #define _BLAZE_MATH_TYPETRAITS_ISSTRICTLYUPPER_H_ 58 template<
typename T >
struct IsStrictlyUpper;
70 struct IsStrictlyUpperHelper
74 template<
typename T >
76 :
public IsStrictlyUpper< typename T::ResultType >::Type
112 template<
typename T >
114 :
public IsStrictlyUpperHelper<T>
124 template<
typename T >
137 template<
typename T >
138 struct IsStrictlyUpper< volatile T >
139 :
public IsStrictlyUpper<T>
150 template<
typename T >
151 struct IsStrictlyUpper< const volatile T >
152 :
public IsStrictlyUpper<T>
171 template<
typename T >
BoolConstant< false > FalseType
Type/value traits base class.The FalseType class is used as base class for type traits and value trai...
Definition: FalseType.h:61
Header file for the FalseType type/value trait base class.
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
Compile time check for strictly upper triangular matrices.This type trait tests whether or not the gi...
Definition: IsStrictlyUpper.h:113
Header file for the EnableIf class template.
constexpr bool IsStrictlyUpper_v
Auxiliary variable template for the IsStrictlyUpper type trait.The IsStrictlyUpper_v variable templat...
Definition: IsStrictlyUpper.h:172
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 IsExpression type trait class.