Trait nalgebra::IterableMut [] [src]

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

This is a workaround of current Rust limitations.

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

Required Methods

Gets a vector-like read-write iterator.

Implementors