35#ifndef _BLAZE_MATH_TYPETRAITS_YIELDSTRIANGULAR_H_
36#define _BLAZE_MATH_TYPETRAITS_YIELDSTRIANGULAR_H_
67template<
typename OP,
typename MT,
typename... MTs >
69 :
public BoolConstant< YieldsLower_v<OP,MT,MTs...> || YieldsUpper_v<OP,MT,MTs...> >
79template<
typename OP,
typename MT,
typename... MTs >
92template<
typename OP,
typename MT,
typename... MTs >
93struct YieldsTriangular< volatile OP, MT, MTs... >
94 :
public YieldsTriangular<OP,MT,MTs...>
105template<
typename OP,
typename MT,
typename... MTs >
106struct YieldsTriangular< const volatile OP, MT, MTs... >
107 :
public YieldsTriangular<OP,MT,MTs...>
126template<
typename OP,
typename MT,
typename... MTs >
Header file for the IntegralConstant class template.
Header file for the YieldsLower type trait.
Header file for the YieldsUpper type trait.
constexpr bool YieldsTriangular_v
Auxiliary variable template for the YieldsTriangular type trait.
Definition: YieldsTriangular.h:127
Generic wrapper for a compile time constant integral value.
Definition: IntegralConstant.h:74
Compile time check for operations on matrices.
Definition: YieldsTriangular.h:70