Trait nalgebra::traits::structure::IterableMut
pub trait IterableMut<N> { fn mut_iter<'l>(&'l mut self) -> VecMutIterator<'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 mut_iter<'l>(&'l mut self) -> VecMutIterator<'l, N>
Gets a vector-like read-write iterator.