Type Alias MatrixIter

Source
pub type MatrixIter<'a, T> = Box<dyn ExactSizeDoubleEndedIterator<Item = VectorIter<'a, T>> + 'a>;
Expand description

A trait object that represents a double-ended iterator over a matrix.

Aliased Typeยง

struct MatrixIter<'a, T>(/* private fields */);