35 #ifndef _BLAZE_MATH_TYPETRAITS_ISCOLUMNVECTOR_H_ 36 #define _BLAZE_MATH_TYPETRAITS_ISCOLUMNVECTOR_H_ 62 template<
typename T >
63 struct IsColumnVectorHelper
69 template<
typename VT >
70 static TrueType test(
const Vector<VT,columnVector>* );
72 template<
typename VT >
73 static TrueType test(
const volatile Vector<VT,columnVector>* );
80 using Type = decltype( test( create() ) );
109 template<
typename T >
111 :
public IsColumnVectorHelper<T>::Type
121 template<
typename T >
142 template<
typename T >
BoolConstant< false > FalseType
Type/value traits base class.The FalseType class is used as base class for type traits and value trai...
Definition: FalseType.h:61
Header file for the FalseType type/value trait base class.
Generic wrapper for a compile time constant integral value.The IntegralConstant class template repres...
Definition: IntegralConstant.h:71
BoolConstant< true > TrueType
Type traits base class.The TrueType class is used as base class for type traits and value traits that...
Definition: TrueType.h:61
Header file for the vector transpose flag types.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
constexpr bool IsColumnVector_v
Auxiliary variable template for the IsColumnVector type trait.The IsColumnVector_v variable template ...
Definition: IsColumnVector.h:143
Compile time check for column vector types.This type trait tests whether or not the given template ar...
Definition: IsColumnVector.h:110
Header file for the Vector CRTP base class.
Header file for the TrueType type/value trait base class.