35 #ifndef _BLAZE_MATH_TYPETRAITS_ISIDENTITY_H_ 36 #define _BLAZE_MATH_TYPETRAITS_ISIDENTITY_H_ 77 template<
typename T >
79 :
public BoolConstant< IsUniLower_v<T> && IsUniUpper_v<T> >
89 template<
typename T >
102 template<
typename T >
103 struct IsIdentity< volatile T >
104 :
public IsIdentity<T>
115 template<
typename T >
116 struct IsIdentity< const volatile T >
117 :
public IsIdentity<T>
136 template<
typename T >
Header file for the IsUniUpper type trait.
Generic wrapper for a compile time constant integral value.The IntegralConstant class template repres...
Definition: IntegralConstant.h:72
Header file for the IsUniLower type trait.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Compile time check for identity matrices.This type trait tests whether or not the given template para...
Definition: IsIdentity.h:78
Header file for the IntegralConstant class template.
constexpr bool IsIdentity_v
Auxiliary variable template for the IsIdentity type trait.The IsIdentity_v variable template provides...
Definition: IsIdentity.h:137