35 #ifndef _BLAZE_MATH_TYPETRAITS_ISROWVECTOR_H_ 36 #define _BLAZE_MATH_TYPETRAITS_ISROWVECTOR_H_ 64 template<
typename T >
65 struct IsRowVectorHelper
69 template<
typename VT >
70 static TrueType test(
const Vector<VT,rowVector>& );
77 using Type = decltype( test( std::declval< RemoveCV_<T> >() ) );
106 template<
typename T >
108 :
public IsRowVectorHelper<T>::Type
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
Compile time check for row vector types.This type trait tests whether or not the given template argum...
Definition: IsRowVector.h:107
Header file for the FalseType type/value trait base class.
Header file for the RemoveCV type trait.
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
Header file for the Vector CRTP base class.
Header file for the TrueType type/value trait base class.