Struct collections::dlist::IntoIterExperimental [-]  [+] [src]

pub struct IntoIter<T> {
    // some fields omitted
}

An iterator over mutable references to the items of a DList.

Trait Implementations

impl<A> Iterator<A> for IntoIter<A>

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

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

impl<A> DoubleEndedIterator<A> for IntoIter<A>

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

Derived Implementations

impl<T: Clone> Clone for IntoIter<T>

fn clone(&self) -> IntoIter<T>

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