35#ifndef _BLAZE_MATH_TYPETRAITS_ISHERMITIAN_H_
36#define _BLAZE_MATH_TYPETRAITS_ISHERMITIAN_H_
59template<
typename T >
struct IsHermitian;
71struct IsHermitianHelper
77 :
public IsHermitian< typename T::ResultType >::Type
112template<
typename T >
114 :
public IsHermitianHelper<T>
124template<
typename T >
137template<
typename T >
138struct IsHermitian< volatile T >
139 :
public IsHermitian<T>
150template<
typename T >
151struct IsHermitian< const volatile T >
152 :
public IsHermitian<T>
171template<
typename T >
Header file for the EnableIf class template.
Header file for the IntegralConstant class template.
Header file for the IsExpression type trait class.
Header file for the IsSame and IsStrictlySame type traits.
constexpr bool IsExpression_v
Auxiliary variable template for the IsExpression type trait.
Definition: IsExpression.h:114
constexpr bool IsHermitian_v
Auxiliary variable template for the IsHermitian type trait.
Definition: IsHermitian.h:172
BoolConstant< false > FalseType
Type/value traits base class.
Definition: IntegralConstant.h:121
typename EnableIf< Condition, T >::Type EnableIf_t
Auxiliary type for the EnableIf class template.
Definition: EnableIf.h:138
Compile time check for Hermitian matrices.
Definition: IsHermitian.h:115