35 #ifndef _BLAZE_MATH_TYPETRAITS_ISSQUARE_H_
36 #define _BLAZE_MATH_TYPETRAITS_ISSQUARE_H_
86 template<
typename T >
105 template<
typename T >
111 typedef typename IsSquare<T>::Type Type;
123 template<
typename T >
124 struct IsSquare< volatile T > :
public IsSquare<T>::Type
128 enum { value = IsSquare<T>::value };
129 typedef typename IsSquare<T>::Type Type;
141 template<
typename T >
142 struct IsSquare< const volatile T > :
public IsSquare<T>::Type
146 enum { value = IsSquare<T>::value };
147 typedef typename IsSquare<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 square matrices.This type trait tests whether or not the given template parame...
Definition: IsSquare.h:87
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.