35 #ifndef _BLAZE_MATH_TYPETRAITS_ISGENERAL_H_ 36 #define _BLAZE_MATH_TYPETRAITS_ISGENERAL_H_ 88 template<
typename T >
90 :
public And< Not< IsSymmetric<T> >, Not< IsHermitian<T> >, Not< IsTriangular<T> > >
100 template<
typename T >
113 template<
typename T >
126 template<
typename T >
Header file for the And class template.
Header file for the IsSymmetric type trait.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Header file for the Not class template.
Header file for the IsTriangular type trait.
Compile time check for general matrices.This type trait tests whether or not the given template param...
Definition: IsGeneral.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 IsHermitian type trait.