Trait nalgebra::IterableMut [] [src]

pub trait IterableMut<N> {
    fn iter_mut<'l>(&'l mut self) -> IterMut<'l, N>;
}

This is a workaround of current Rust limitations.

Traits of mutable objects which can be iterated through like a vector.

Required Methods

fn iter_mut<'l>(&'l mut self) -> IterMut<'l, N>

Gets a vector-like read-write iterator.

Implementors