35 #ifndef _BLAZE_MATH_TYPETRAITS_YIELDSSTRICTLYTRIANGULAR_H_ 36 #define _BLAZE_MATH_TYPETRAITS_YIELDSSTRICTLYTRIANGULAR_H_ 67 template<
typename OP,
typename MT,
typename... MTs >
69 :
public BoolConstant< YieldsStrictlyLower_v<OP,MT,MTs...> || YieldsStrictlyUpper_v<OP,MT,MTs...> >
79 template<
typename OP,
typename MT,
typename... MTs >
92 template<
typename OP,
typename MT,
typename... MTs >
93 struct YieldsStrictlyTriangular< volatile OP, MT, MTs... >
94 :
public YieldsStrictlyTriangular<OP,MT,MTs...>
105 template<
typename OP,
typename MT,
typename... MTs >
106 struct YieldsStrictlyTriangular< const volatile OP, MT, MTs... >
107 :
public YieldsStrictlyTriangular<OP,MT,MTs...>
126 template<
typename OP,
typename MT,
typename... MTs >
constexpr bool YieldsStrictlyTriangular_v
Auxiliary variable template for the YieldsStrictlyTriangular type trait.The YieldsStrictlyTriangular_...
Definition: YieldsStrictlyTriangular.h:127
Header file for the YieldsStrictlyLower type trait.
Generic wrapper for a compile time constant integral value.The IntegralConstant class template repres...
Definition: IntegralConstant.h:71
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Header file for the YieldsStrictlyUpper type trait.
Compile time check for operations on matrices.This type trait tests whether or not the given operatio...
Definition: YieldsStrictlyTriangular.h:68
Header file for the IntegralConstant class template.