Trait nalgebra::Iterable [] [src]

pub trait Iterable<N> {
    fn iter(&self) -> Iter<N>;
}

This is a workaround of current Rust limitations.

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

Required Methods

Gets a vector-like read-only iterator.

Implementors