35 #ifndef _BLAZE_MATH_TYPETRAITS_ISSTRICTLYUPPER_H_
36 #define _BLAZE_MATH_TYPETRAITS_ISSTRICTLYUPPER_H_
85 template<
typename T >
104 template<
typename T >
110 typedef typename IsStrictlyUpper<T>::Type Type;
122 template<
typename T >
123 struct IsStrictlyUpper< volatile T > :
public IsStrictlyUpper<T>::Type
127 enum { value = IsStrictlyUpper<T>::value };
128 typedef typename IsStrictlyUpper<T>::Type Type;
140 template<
typename T >
141 struct IsStrictlyUpper< const volatile T > :
public IsStrictlyUpper<T>::Type
145 enum { value = IsStrictlyUpper<T>::value };
146 typedef typename IsStrictlyUpper<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 upper triangular matrices.This type trait tests whether or not the gi...
Definition: IsStrictlyUpper.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.