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 for RangeInclusive<A>

type Item = A

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

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

impl<A: Int + ToPrimitive> DoubleEndedIterator 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)