35#ifndef _BLAZE_MATH_TYPETRAITS_ISSPARSEMATRIX_H_
36#define _BLAZE_MATH_TYPETRAITS_ISSPARSEMATRIX_H_
61template<
typename MT,
bool SO >
62TrueType isSparseMatrix_backend(
const volatile SparseMatrix<MT,SO>* );
92 :
public decltype( isSparseMatrix_backend( std::declval<T*>() ) )
102template<
typename T >
123template<
typename T >
Header file for the IntegralConstant class template.
constexpr bool IsSparseMatrix_v
Auxiliary variable template for the IsSparseMatrix type trait.
Definition: IsSparseMatrix.h:124
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 all forward declarations for expression class templates.
Generic wrapper for a compile time constant integral value.
Definition: IntegralConstant.h:74
Compile time check for sparse matrix types.
Definition: IsSparseMatrix.h:93