Trait nalgebra::Iterable [] [src]

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

This is a workaround of current Rust limitations.

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

Required Methods

fn iter<'l>(&'l self) -> Iter<'l, N>

Gets a vector-like read-only iterator.

Implementors