Blaze 3.9
blaze::IsRowMajorMatrix< T > Struct Template Reference

Compile time check for row-major matrix types. More...

#include <IsRowMajorMatrix.h>

Inherits decltype isRowMajorMatrix_backend std::declval< T * >.

Detailed Description

template<typename T>
struct blaze::IsRowMajorMatrix< T >

Compile time check for row-major matrix types.

This type trait tests whether or not the given template argument is a row-major dense or sparse matrix type (i.e., a matrix whose storage order is set to true). In case the type is a row-major matrix type, the value member constant is set to true, the nested type definition Type is TrueType, and the class derives from TrueType. Otherwise value is set to false, Type is FalseType, and the class derives from FalseType.

Efficient implementation of a compressed matrix.
Definition: CompressedMatrix.h:239
Efficient implementation of a dynamic matrix.
Definition: DynamicMatrix.h:242
Efficient implementation of a fixed-sized matrix.
Definition: StaticMatrix.h:249
constexpr bool rowMajor
Storage order flag for row-major matrices.
Definition: StorageOrder.h:71
constexpr bool columnMajor
Storage order flag for column-major matrices.
Definition: StorageOrder.h:99
Compile time check for row-major matrix types.
Definition: IsRowMajorMatrix.h:98

The documentation for this struct was generated from the following file: