[][src]Module aljabar::row_view

Support for iterating over matrix rows. This is less natural than iterating over columns due to the iteration not matching the stride of the underlying storage.

Structs

RowView

A view into a given row of a matrix. It's possible to index just like a normal Vector, but doesn't support the usual operators. It can only be converted to a a Vector if the scalar value supports Clone.

RowViewIter

An iterator over a RowView.

RowViewMut

A mutable view into a given row of a matrix. It's possible to index just like a normal Vector, but doesn't support the usual operators. It can only be converted to a Vector if the scalar value supports Clone.