35#ifndef _BLAZE_MATH_TYPETRAITS_ISROW_H_
36#define _BLAZE_MATH_TYPETRAITS_ISROW_H_
100template<
typename MT,
bool SO,
bool DF,
bool SF,
size_t... CRAs >
101struct IsRow< Row<MT,SO,DF,SF,CRAs...> >
113template<
typename MT,
bool SO,
bool DF,
bool SF,
size_t... CRAs >
114struct IsRow< const Row<MT,SO,DF,SF,CRAs...> >
126template<
typename MT,
bool SO,
bool DF,
bool SF,
size_t... CRAs >
127struct IsRow< volatile Row<MT,SO,DF,SF,CRAs...> >
139template<
typename MT,
bool SO,
bool DF,
bool SF,
size_t... CRAs >
140struct IsRow< const volatile Row<MT,SO,DF,SF,CRAs...> >
160template<
typename T >
Header file for the IntegralConstant class template.
constexpr bool IsRow_v
Auxiliary variable template for the IsRow type trait.
Definition: IsRow.h:161
BoolConstant< true > TrueType
Type traits base class.
Definition: IntegralConstant.h:132
Header file for all forward declarations for views.
Generic wrapper for a compile time constant integral value.
Definition: IntegralConstant.h:74
Compile time check for rows.
Definition: IsRow.h:91