Struct std::iter::RangeStepUnstable [-] [+] [src]

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> Iterator for RangeStep<A> where A: Int

type Item = A

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

fn size_hint(&self) -> (usize, Option<usize>)

Derived Implementations

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

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

fn clone_from(&mut self, &RangeStep<A>)