Struct num::iter::RangeStepInclusive [] [src]

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

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

Trait Implementations

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

type Item = A

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

Derived Implementations

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

fn clone(&self) -> RangeStepInclusive<A>

1.0.0fn clone_from(&mut self, source: &Self)