35 #ifndef _BLAZE_MATH_TRAITS_CROSSEXPRTRAIT_H_ 36 #define _BLAZE_MATH_TRAITS_CROSSEXPRTRAIT_H_ 78 struct Failure {
using Type = INVALID_TYPE; };
84 struct Result {
using Type = decltype( std::declval<T1>() % std::declval<T2>() ); };
116 template<
typename T1
Compile time check for row vector types.This type trait tests whether or not the given template argum...
Definition: IsRowVector.h:107
Header file for the IsRowVector type trait.
Header file for the And class template.
Evaluation of the return type of a cross product expression.Via this type trait it is possible to eva...
Definition: CrossExprTrait.h:73
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Header file for the If class template.
Header file for the Or class template.
Compile time check for column vector types.This type trait tests whether or not the given template ar...
Definition: IsColumnVector.h:107
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 CrossExprTrait< T1, T2 >::Type CrossExprTrait_
Auxiliary alias declaration for the CrossExprTrait class template.The CrossExprTrait_ alias declarati...
Definition: CrossExprTrait.h:118
Compile time logical 'and' evaluation.The And alias declaration performs at compile time a logical 'a...
Definition: And.h:76
Header file for the IsColumnVector type trait.