35 #ifndef _BLAZE_MATH_TYPETRAITS_ISDIAGONAL_H_ 36 #define _BLAZE_MATH_TYPETRAITS_ISDIAGONAL_H_ 88 template<
typename T >
90 :
public And< IsLower<T>, IsUpper<T> >
100 template<
typename T >
113 template<
typename T >
126 template<
typename T >
Header file for the And class template.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Header file for the IsLower type trait.
Compile time check for diagonal matrices.This type trait tests whether or not the given template para...
Definition: IsDiagonal.h:89
Compile time logical 'and' evaluation.The And alias declaration performs at compile time a logical 'a...
Definition: And.h:76
Header file for the IsUpper type trait.