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
fn clone(&self) -> Range<A>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more