Struct num::iter::Range
[−]
[src]
pub struct Range<A> { // some fields omitted }
An iterator over the range [start, stop)
Trait Implementations
impl<A> Iterator for Range<A> where A: Add<A, Output=A> + PartialOrd<A> + Clone + ToPrimitive
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.