35 #ifndef _BLAZE_MATH_TRAITS_CTRANSEXPRTRAIT_H_ 36 #define _BLAZE_MATH_TRAITS_CTRANSEXPRTRAIT_H_ 70 template<
typename T >
76 struct Failure {
using Type = INVALID_TYPE; };
82 struct Result {
using Type = decltype(
ctrans( std::declval<T>() ) ); };
111 template<
typename T >
Compile time check for matrix types.This type trait tests whether or not the given template parameter...
Definition: IsMatrix.h:103
Header file for the IsMatrix type trait.
typename CTransExprTrait< T >::Type CTransExprTrait_
Auxiliary alias declaration for the CTransExprTrait class template.The CTransExprTrait_ alias declara...
Definition: CTransExprTrait.h:112
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
decltype(auto) ctrans(const DenseMatrix< MT, SO > &dm)
Returns the conjugate transpose matrix of dm.
Definition: DMatMapExpr.h:1359
Header file for the If class template.
Header file for the Or class template.
Header file for the IsVector type trait.
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
Evaluation of the return type of a conjugate transpose expression.Via this type trait it is possible ...
Definition: CTransExprTrait.h:71
Header file for the RemoveReference type trait.