35 #ifndef _BLAZE_MATH_TYPETRAITS_YIELDSIDENTITY_H_ 36 #define _BLAZE_MATH_TYPETRAITS_YIELDSIDENTITY_H_ 66 template<
typename OP,
typename MT,
typename... MTs >
68 :
public BoolConstant< YieldsUniLower_v<OP,MT,MTs...> && YieldsUniUpper_v<OP,MT,MTs...> >
78 template<
typename OP,
typename MT,
typename... MTs >
91 template<
typename OP,
typename MT,
typename... MTs >
92 struct YieldsIdentity< volatile OP, MT, MTs... >
93 :
public YieldsIdentity<OP,MT,MTs...>
104 template<
typename OP,
typename MT,
typename... MTs >
105 struct YieldsIdentity< const volatile OP, MT, MTs... >
106 :
public YieldsIdentity<OP,MT,MTs...>
125 template<
typename OP,
typename MT,
typename... MTs >
Generic wrapper for a compile time constant integral value.The IntegralConstant class template repres...
Definition: IntegralConstant.h:72
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Header file for the YieldsUniLower type trait.
constexpr bool YieldsIdentity_v
Auxiliary variable template for the YieldsIdentity type trait.The YieldsIdentity_v variable template ...
Definition: YieldsIdentity.h:126
Header file for the IntegralConstant class template.
Compile time check for operations on matrices.This type trait tests whether or not the given operatio...
Definition: YieldsIdentity.h:67
Header file for the YieldsUniUpper type trait.