35#ifndef _BLAZE_MATH_TYPETRAITS_ISCOLUMN_H_
36#define _BLAZE_MATH_TYPETRAITS_ISCOLUMN_H_
100template<
typename MT,
bool SO,
bool DF,
bool SF,
size_t... CCAs >
101struct IsColumn< Column<MT,SO,DF,SF,CCAs...> >
113template<
typename MT,
bool SO,
bool DF,
bool SF,
size_t... CCAs >
114struct IsColumn< const Column<MT,SO,DF,SF,CCAs...> >
126template<
typename MT,
bool SO,
bool DF,
bool SF,
size_t... CCAs >
127struct IsColumn< volatile Column<MT,SO,DF,SF,CCAs...> >
139template<
typename MT,
bool SO,
bool DF,
bool SF,
size_t... CCAs >
140struct IsColumn< const volatile Column<MT,SO,DF,SF,CCAs...> >
160template<
typename T >
Header file for the IntegralConstant class template.
constexpr bool IsColumn_v
Auxiliary variable template for the IsColumn type trait.
Definition: IsColumn.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 columns.
Definition: IsColumn.h:91