35#ifndef _BLAZE_MATH_TYPETRAITS_ISROWMAJORMATRIX_H_
36#define _BLAZE_MATH_TYPETRAITS_ISROWMAJORMATRIX_H_
62template<
typename MT >
63TrueType isRowMajorMatrix_backend(
const volatile Matrix<MT,rowMajor>* );
97 :
public decltype( isRowMajorMatrix_backend( std::declval<T*>() ) )
107template<
typename T >
128template<
typename T >
Header file for the IntegralConstant class template.
constexpr bool IsRowMajorMatrix_v
Auxiliary variable template for the IsRowMajorMatrix type trait.
Definition: IsRowMajorMatrix.h:129
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 matrix storage order 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 row-major matrix types.
Definition: IsRowMajorMatrix.h:98