35 #ifndef _BLAZE_MATH_TYPETRAITS_ISSYMMETRIC_H_
36 #define _BLAZE_MATH_TYPETRAITS_ISSYMMETRIC_H_
84 template<
typename T >
103 template<
typename T >
109 typedef typename IsSymmetric<T>::Type Type;
121 template<
typename T >
122 struct IsSymmetric< volatile T > :
public IsSymmetric<T>::Type
126 enum { value = IsSymmetric<T>::value };
127 typedef typename IsSymmetric<T>::Type Type;
139 template<
typename T >
140 struct IsSymmetric< const volatile T > :
public IsSymmetric<T>::Type
144 enum { value = IsSymmetric<T>::value };
145 typedef typename IsSymmetric<T>::Type Type;
Header file for the FalseType type/value trait base class.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
Compile time check for symmetric matrices.This type trait tests whether or not the given template par...
Definition: IsSymmetric.h:85
boost::false_type 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 TrueType type/value trait base class.