35 #ifndef _BLAZE_MATH_TRAITS_DECLLOWEXPRTRAIT_H_ 36 #define _BLAZE_MATH_TRAITS_DECLLOWEXPRTRAIT_H_ 68 template<
typename T >
74 struct Failure {
using Type = INVALID_TYPE; };
80 struct Result {
using Type = decltype(
decllow( std::declval<T>() ) ); };
109 template<
typename T >
Header file for the IsMatrix type trait.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
Header file for the If class template.
decltype(auto) decllow(const DenseMatrix< MT, SO > &dm)
Declares the given dense matrix expression dm as lower.
Definition: DMatDeclLowExpr.h:1027
Utility type for generic codes.
typename If< T1, T2, T3 >::Type If_
Auxiliary alias declaration for the If class template.The If_ alias declaration provides a convenient...
Definition: If.h:154
Header file for the RemoveReference type trait.
typename DeclLowExprTrait< T >::Type DeclLowExprTrait_
Auxiliary alias declaration for the DeclLowExprTrait class template.The DeclLowExprTrait_ alias decla...
Definition: DeclLowExprTrait.h:110
Evaluation of the return type of a lower declaration (decllow) expression.Via this type trait it is p...
Definition: DeclLowExprTrait.h:69