35 #ifndef _BLAZE_MATH_TYPETRAITS_ISSYMMETRIC_H_ 36 #define _BLAZE_MATH_TYPETRAITS_ISSYMMETRIC_H_ 58 template<
typename T >
struct IsSymmetric;
70 struct IsSymmetricHelper
74 template<
typename T >
76 :
public IsSymmetric< typename T::ResultType >::Type
111 template<
typename T >
113 :
public IsSymmetricHelper<T>
123 template<
typename T >
136 template<
typename T >
137 struct IsSymmetric< volatile T >
138 :
public IsSymmetric<T>
149 template<
typename T >
150 struct IsSymmetric< const volatile T >
151 :
public IsSymmetric<T>
170 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: FalseType.h:61
Header file for the FalseType type/value trait base class.
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 IsSymmetric_v
Auxiliary variable template for the IsSymmetric type trait.The IsSymmetric_v variable template provid...
Definition: IsSymmetric.h:171
Compile time check for symmetric matrices.This type trait tests whether or not the given template par...
Definition: IsSymmetric.h:112
Header file for the EnableIf class template.
constexpr bool IsExpression_v
Auxiliary variable template for the IsExpression type trait.The IsExpression_v variable template prov...
Definition: IsExpression.h:131
Header file for the IsExpression type trait class.