Struct num::iter::RangeStep []

pub struct RangeStep<A> {
    // some fields omitted
}

An iterator over the range [start, stop) by step. It handles overflow by stopping.

Trait Implementations

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

impl<A> Iterator for RangeStep<A> where A: CheckedAdd + PartialOrd<A> + Clone

type Item = A

fn next(&mut self) -> Option<A>