Struct core::iter::RangeInclusiveUnstable [-]  [+] [src]

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

An iterator over the range [start, stop]

Trait Implementations

impl<A: Int + ToPrimitive> Iterator<A> for RangeInclusive<A>

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

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

impl<A: Int + ToPrimitive> DoubleEndedIterator<A> for RangeInclusive<A>

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

Derived Implementations

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

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

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