Struct num::iter::RangeStep
[−]
[src]
pub struct RangeStep<A> { /* fields omitted */ }
An iterator over the range [start, stop) by step
. It handles overflow by stopping.
Trait Implementations
impl<A> Iterator for RangeStep<A> where A: CheckedAdd + PartialOrd<A> + Clone
impl<A> Clone for RangeStep<A> where A: Clone
fn clone(&self) -> RangeStep<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