end, cend

iterator end()

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

Returns

A value of type iterator.

Complexity

Constant

Exceptions

this function is noexcept and is guaranteed never to throw.

Parameters

(None)

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.

Returns

A value of type const_iterator.

Complexity

Constant

Exceptions

this function is noexcept and is guaranteed never to throw.

Parameters

(None)

Warning

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