35#ifndef _BLAZE_MATH_TRAITS_DECLSTRLOWTRAIT_H_
36#define _BLAZE_MATH_TRAITS_DECLSTRLOWTRAIT_H_
60template<
typename >
struct DeclStrLowTrait;
61template<
typename,
typename =
void >
struct DeclStrLowTraitEval;
69auto evalDeclStrLowTrait(
const volatile T& ) -> DeclStrLowTraitEval<T>;
125template<
typename MT >
127 :
public decltype( evalDeclStrLowTrait( std::declval<MT&>() ) )
145template<
typename MT >
157struct DeclStrLowTraitEval
168template<
typename MT >
169struct DeclStrLowTraitEval< MT
173 Size_v<MT,0UL> == Size_v<MT,1UL> ) > >
175 using Type = StrictlyLowerMatrix<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 StrictlyLowerMatrix.
typename DeclStrLowTrait< MT >::Type DeclStrLowTrait_t
Auxiliary alias declaration for the DeclStrLowTrait type trait.
Definition: DeclStrLowTrait.h:146
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 DeclStrLowTrait class.
Definition: DeclStrLowTrait.h:128