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

pub struct RangeStepInclusive<A> { /* 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>

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more