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

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

An iterator over the range [start, stop]

Trait Implementations

impl<A> Iterator for RangeInclusive<A> where A: Int, A: ToPrimitive

type Item = A

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

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

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

impl<A> DoubleEndedIterator for RangeInclusive<A> where A: Int, A: ToPrimitive

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

Derived Implementations

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

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

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