35 #ifndef _BLAZE_MATH_TRAITS_ROWEXPRTRAIT_H_ 36 #define _BLAZE_MATH_TRAITS_ROWEXPRTRAIT_H_ 68 template<
typename MT >
74 struct Failure {
using Type = INVALID_TYPE; };
80 struct Result {
using Type = decltype(
row( std::declval<MT>(), std::declval<size_t>() ) ); };
109 template<
typename MT >
Header file for the IsMatrix type trait.
Row< MT > row(Matrix< MT, SO > &matrix, size_t index)
Creating a view on a specific row of the given matrix.
Definition: Row.h:124
typename RowExprTrait< MT >::Type RowExprTrait_
Auxiliary alias declaration for the RowExprTrait type trait.The RowExprTrait_ alias declaration provi...
Definition: RowExprTrait.h:110
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
Header file for the If class template.
Evaluation of the expression type type of a row operation.Via this type trait it is possible to evalu...
Definition: RowExprTrait.h:69
Header file for all forward declarations for views.
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.