end, cend

iterator end()

Returns a (random access) iterator pointing one passed the last entry of the matrix.

Parameters:

(None)

Returns:

A value of type iterator.

Complexity:

Constant

Exceptions:

This function is noexcept and is guaranteed never to throw.

Warning

The order in which entries in the matrix are iterated over is not specified.

const_iterator cend()

Returns a const (random access) iterator pointing one passed the last entry of the matrix.

Parameters:

(None)

Returns:

A value of type const_iterator.

Complexity:

Constant

Exceptions:

This function is noexcept and is guaranteed never to throw.

Warning

The order in which entries in the matrix are iterated over is not specified.