35#ifndef _BLAZE_MATH_TYPETRAITS_YIELDSLOWER_H_
36#define _BLAZE_MATH_TYPETRAITS_YIELDSLOWER_H_
66template<
typename OP,
typename MT,
typename... MTs >
68 :
public BoolConstant< YieldsUniLower_v<OP,MT,MTs...> || YieldsStrictlyLower_v<OP,MT,MTs...> >
78template<
typename OP,
typename MT,
typename... MTs >
91template<
typename OP,
typename MT,
typename... MTs >
92struct YieldsLower< volatile OP, MT, MTs... >
93 :
public YieldsLower<OP,MT,MTs...>
104template<
typename OP,
typename MT,
typename... MTs >
105struct YieldsLower< const volatile OP, MT, MTs... >
106 :
public YieldsLower<OP,MT,MTs...>
125template<
typename OP,
typename MT,
typename... MTs >
Header file for the IntegralConstant class template.
Header file for the YieldsStrictlyLower type trait.
Header file for the YieldsUniLower type trait.
constexpr bool YieldsLower_v
Auxiliary variable template for the YieldsLower type trait.
Definition: YieldsLower.h:126
Generic wrapper for a compile time constant integral value.
Definition: IntegralConstant.h:74
Compile time check for operations on matrices.
Definition: YieldsLower.h:69