Variable templates

Defined in matrix.hpp.

This page contains documentation for several variable templates related to matrices.

template<typename T>
static constexpr bool IsMatrix

This variable has value true if the template parameter T is either DynamicMatrix or StaticMatrix; and false otherwise.

template<typename T>
static constexpr bool IsStaticMatrix

This variable has value true if the template parameter T is StaticMatrix; and false otherwise.

template<typename T>
static constexpr bool IsDynamicMatrix

This variable has value true if the template parameter T is DynamicMatrix; and false otherwise.

template<typename T>
static constexpr bool IsMatWithSemiring

This variable has value true if the template parameter T is DynamicMatrix<Semiring, Scalar>; and false otherwise.