35 #ifndef _BLAZE_MATH_TYPETRAITS_ISMATRIX_H_
36 #define _BLAZE_MATH_TYPETRAITS_ISMATRIX_H_
63 template<
typename T >
67 enum { value = IsDenseMatrix<T>::value || IsSparseMatrix<T>::value };
68 typedef typename SelectType<value,TrueType,FalseType>::Type Type;
94 template<
typename T >
95 struct IsMatrix :
public IsMatrixHelper<T>::Type
100 enum { value = IsMatrixHelper<T>::value };
101 typedef typename IsMatrixHelper<T>::Type Type;
Header file for the IsSparseMatrix type trait.
Header file for the FalseType type/value trait base class.
Compile time check for matrix types.This type trait tests whether or not the given template parameter...
Definition: IsMatrix.h:95
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
Header file for the SelectType class template.
Header file for the IsDenseMatrix type trait.
Header file for the TrueType type/value trait base class.