Struct num::iter::Range [] [src]

pub struct Range<A> { /* fields omitted */ }

An iterator over the range [start, stop)

Trait Implementations

impl<A> DoubleEndedIterator for Range<A> where A: Integer + Clone + ToPrimitive

Integer is required to ensure the range will be the same regardless of the direction it is consumed.

impl<A> Iterator for Range<A> where A: Add<A, Output=A> + PartialOrd<A> + Clone + ToPrimitive

impl<A> Clone for Range<A> where A: Clone

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more