35#ifndef _BLAZE_MATH_TYPETRAITS_ISMATSCALARDIVEXPR_H_
36#define _BLAZE_MATH_TYPETRAITS_ISMATSCALARDIVEXPR_H_
61template<
typename MT >
62TrueType isMatScalarDivExpr_backend(
const volatile MatScalarDivExpr<MT>* );
64FalseType isMatScalarDivExpr_backend( ... );
84 :
public decltype( isMatScalarDivExpr_backend( std::declval<T*>() ) )
115template<
typename T >
Header file for the IntegralConstant class template.
Header file for the MatScalarDivExpr base class.
constexpr bool IsMatScalarDivExpr_v
Auxiliary variable template for the IsMatScalarDivExpr type trait.
Definition: IsMatScalarDivExpr.h:116
BoolConstant< true > TrueType
Type traits base class.
Definition: IntegralConstant.h:132
BoolConstant< false > FalseType
Type/value traits base class.
Definition: IntegralConstant.h:121
Generic wrapper for a compile time constant integral value.
Definition: IntegralConstant.h:74
Compile time check whether the given type is a matrix/scalar division expression template.
Definition: IsMatScalarDivExpr.h:85