35 #ifndef _BLAZE_MATH_TYPETRAITS_ISSYMMETRIC_H_ 36 #define _BLAZE_MATH_TYPETRAITS_ISSYMMETRIC_H_ 59 template<
typename T >
struct IsSymmetric;
71 struct IsSymmetricHelper
75 template<
typename T >
77 :
public IsSymmetric< typename T::ResultType >::Type
112 template<
typename T >
114 :
public IsSymmetricHelper<T>
124 template<
typename T >
137 template<
typename T >
138 struct IsSymmetric< volatile T >
139 :
public IsSymmetric<T>
150 template<
typename T >
151 struct IsSymmetric< const volatile T >
152 :
public IsSymmetric<T>
171 template<
typename T >
BoolConstant< false > FalseType
Type/value traits base class.The FalseType class is used as base class for type traits and value trai...
Definition: IntegralConstant.h:121
Header file for the IsSame and IsStrictlySame type traits.
typename EnableIf< Condition, T >::Type EnableIf_t
Auxiliary type for the EnableIf class template.The EnableIf_t alias declaration provides a convenient...
Definition: EnableIf.h:138
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
constexpr bool IsExpression_v
Auxiliary variable template for the IsExpression type trait.The IsExpression_v variable template prov...
Definition: IsExpression.h:130
Compile time check for symmetric matrices.This type trait tests whether or not the given template par...
Definition: IsSymmetric.h:113
Header file for the EnableIf class template.
Header file for the IntegralConstant class template.
constexpr bool IsSymmetric_v
Auxiliary variable template for the IsSymmetric type trait.The IsSymmetric_v variable template provid...
Definition: IsSymmetric.h:172
Header file for the IsExpression type trait class.