Struct num::iter::RangeInclusive [] [src]

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

An iterator over the range [start, stop]

Trait Implementations

impl<A> DoubleEndedIterator for RangeInclusive<A> where A: Sub<A, Output=A> + Integer + Clone + ToPrimitive

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

impl<A> Iterator for RangeInclusive<A> where A: Add<A, Output=A> + PartialOrd<A> + Clone + ToPrimitive

type Item = A

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

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

Derived Implementations

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

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

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