35 #ifndef _BLAZE_MATH_TRAITS_TDVECSCALARDIVEXPRTRAIT_H_
36 #define _BLAZE_MATH_TRAITS_TDVECSCALARDIVEXPRTRAIT_H_
80 struct TDVecScalarDivExprTraitHelper
84 typedef typename NumericElementType<VT>::Type NET;
85 typedef typename If< And< IsComplex<NET>, IsBuiltin<ST> >
86 ,
typename BaseElementType<VT>::Type
87 ,
typename DivTrait<NET,ST>::Type
93 typedef typename If< IsFloatingPoint<ElementType>
94 , DVecScalarMultExpr<VT,ElementType,true>
95 , DVecScalarDivExpr<VT,ElementType,true>
108 template<
typename VT
110 struct TDVecScalarDivExprTraitHelper<VT,ST,false>
114 typedef INVALID_TYPE Type;
131 template<
typename VT
145 typedef TDVecScalarDivExprTraitHelper<VT,ST,condition> Tmp;
Compile time check for row vector types.This type trait tests whether or not the given template argum...
Definition: IsRowVector.h:107
Compile time check for numeric types.This type trait tests whether or not the given template paramete...
Definition: IsNumeric.h:98
Compile time type selection.The If class template selects one of the two given types T2 and T3 depend...
Definition: If.h:112
Compile time check for volatile data types.The IsVolatile type trait tests whether or not the given t...
Definition: IsVolatile.h:94
Header file for the RemoveCV type trait.
Header file for the IsRowVector type trait.
Header file for the And class template.
Header file for the IsVolatile type trait.
Compile time check for dense vector types.This type trait tests whether or not the given template par...
Definition: IsDenseVector.h:103
Header file for the If class template.
Header file for the IsFloatingPoint type trait.
Header file for the Or class template.
Type ElementType
Type of the sparse matrix elements.
Definition: CompressedMatrix.h:2476
Header file for all forward declarations for expression class templates.
Header file for the BaseElementType type trait.
Header file for the IsNumeric type trait.
Removal of reference modifiers.The RemoveCV type trait removes any reference modifiers from the given...
Definition: RemoveReference.h:69
Header file for the IsConst type trait.
Utility type for generic codes.
Header file for the division trait.
Header file for the IsReference type trait.
Evaluation of the expression type of a transpose dense vector/scalar division.Via this type trait it ...
Definition: TDVecScalarDivExprTrait.h:133
Header file for the RemoveReference type trait.
Compile time check for constant data types.The IsConst type trait tests whether or not the given temp...
Definition: IsConst.h:94
Header file for the NumericElementType type trait.
Header file for the IsDenseVector type trait.
Header file for the IsBuiltin type trait.
Compile time type check.This class tests whether the given template parameter T is a reference type (...
Definition: IsReference.h:94
Header file for the IsComplex type trait.