35 #ifndef _BLAZE_MATH_TYPETRAITS_ISSTRICTLYLOWER_H_
36 #define _BLAZE_MATH_TYPETRAITS_ISSTRICTLYLOWER_H_
85 template<
typename T >
104 template<
typename T >
110 typedef typename IsStrictlyLower<T>::Type Type;
122 template<
typename T >
123 struct IsStrictlyLower< volatile T > :
public IsStrictlyLower<T>::Type
127 enum { value = IsStrictlyLower<T>::value };
128 typedef typename IsStrictlyLower<T>::Type Type;
140 template<
typename T >
141 struct IsStrictlyLower< const volatile T > :
public IsStrictlyLower<T>::Type
145 enum { value = IsStrictlyLower<T>::value };
146 typedef typename IsStrictlyLower<T>::Type Type;
Header file for the FalseType type/value trait base class.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
Compile time check for strictly lower triangular matrices.This type trait tests whether or not the gi...
Definition: IsStrictlyLower.h:86
boost::false_type 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 TrueType type/value trait base class.