35#ifndef _BLAZE_MATH_TRAITS_DECLLOWTRAIT_H_
36#define _BLAZE_MATH_TRAITS_DECLLOWTRAIT_H_
60template<
typename >
struct DeclLowTrait;
61template<
typename,
typename =
void >
struct DeclLowTraitEval;
69auto evalDeclLowTrait(
const volatile T& ) -> DeclLowTraitEval<T>;
123template<
typename MT >
125 :
public decltype( evalDeclLowTrait( std::declval<MT&>() ) )
143template<
typename MT >
155struct DeclLowTraitEval
166template<
typename MT >
167struct DeclLowTraitEval< MT
171 Size_v<MT,0UL> == Size_v<MT,1UL> ) > >
173 using Type = LowerMatrix<typename MT::ResultType>;
Header file for the EnableIf class template.
Header file for the IsMatrix type trait.
Header file for the implementation of the base template of the LowerMatrix.
typename DeclLowTrait< MT >::Type DeclLowTrait_t
Auxiliary alias declaration for the DeclLowTrait type trait.
Definition: DeclLowTrait.h:144
constexpr ptrdiff_t DefaultSize_v
Default size of the Size type trait.
Definition: Size.h:72
constexpr bool IsMatrix_v
Auxiliary variable template for the IsMatrix type trait.
Definition: IsMatrix.h:124
typename EnableIf< Condition, T >::Type EnableIf_t
Auxiliary type for the EnableIf class template.
Definition: EnableIf.h:138
Header file for the Size type trait.
Base template for the DeclLowTrait class.
Definition: DeclLowTrait.h:126