35#ifndef _BLAZE_MATH_TYPETRAITS_ISCOLUMNVECTOR_H_
36#define _BLAZE_MATH_TYPETRAITS_ISCOLUMNVECTOR_H_
62template<
typename VT >
63TrueType isColumnVector_backend(
const volatile Vector<VT,columnVector>* );
94 :
public decltype( isColumnVector_backend( std::declval<T*>() ) )
104template<
typename T >
125template<
typename T >
Header file for the IntegralConstant class template.
constexpr bool IsColumnVector_v
Auxiliary variable template for the IsColumnVector type trait.
Definition: IsColumnVector.h:126
BoolConstant< true > TrueType
Type traits base class.
Definition: IntegralConstant.h:132
BoolConstant< false > FalseType
Type/value traits base class.
Definition: IntegralConstant.h:121
Header file for the vector transpose flag types.
Header file for all forward declarations for expression class templates.
Generic wrapper for a compile time constant integral value.
Definition: IntegralConstant.h:74
Compile time check for column vector types.
Definition: IsColumnVector.h:95