IncreaseDegree

template<typename T>
struct IncreaseDegree<T, std::enable_if_t<IsMatrix<T>>>

Defined in matrix.hpp.

Specialization of the adapter IncreaseDegree for types T such that the value of IsMatrix<T> is true.

Template Parameters:

T – the type of matrices.

Warning

It is not possible to increase the degree of any of the types for which IsMatrix<T> is true, and as such the call operator of this type does nothing.

constexpr void operator()(T&, size_t) const noexcept

Returns (None).

Parameters:

(None)

Returns:

Does not do anything, do not use.

Exceptions:

This function is noexcept and is guaranteed never to throw.

Complexity:

Constant.