Struct std::collections::dlist::MoveItems[src]

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

DList consuming iterator

Trait Implementations

impl<A> Iterator<A> for MoveItems<A>

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

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

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

fn chain<U: Iterator<A>>(self, U) -> Chain<MoveItems<A>, U>

fn zip<B, U: Iterator<B>>(self, U) -> Zip<MoveItems<A>, U>

fn map<B>(self, |A|: 'r -> B) -> Map<'r, A, B, MoveItems<A>>

fn filter<A>(self, |&A|: 'r -> bool) -> Filter<'r, A, MoveItems<A>>

fn filter_map<B>(self, |A|: 'r -> Option<B>) -> FilterMap<'r, A, B, MoveItems<A>>

fn enumerate<A>(self) -> Enumerate<MoveItems<A>>

fn peekable<A>(self) -> Peekable<A, MoveItems<A>>

fn skip_while<A>(self, |&A|: 'r -> bool) -> SkipWhile<'r, A, MoveItems<A>>

fn take_while<A>(self, |&A|: 'r -> bool) -> TakeWhile<'r, A, MoveItems<A>>

fn skip<A>(self, uint) -> Skip<MoveItems<A>>

fn take<A>(self, uint) -> Take<MoveItems<A>>

fn scan<St, B>(self, St, |&mut St, A|: 'r -> Option<B>) -> Scan<'r, A, B, MoveItems<A>, St>

fn flat_map<B, U: Iterator<B>>(self, |A|: 'r -> U) -> FlatMap<'r, A, MoveItems<A>, U>

fn fuse<A>(self) -> Fuse<MoveItems<A>>

fn inspect<A>(self, |&A|: 'r) -> Inspect<'r, A, MoveItems<A>>

fn by_ref<A>(&'r mut self) -> ByRef<'r, MoveItems<A>>

fn advance<A>(&mut self, |A| -> bool) -> bool

fn collect<B: FromIterator<A>>(&mut self) -> B

fn nth<A>(&mut self, uint) -> Option<A>

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

fn fold<B>(&mut self, B, |B, A| -> B) -> B

fn count<A>(&mut self) -> uint

fn all<A>(&mut self, |A| -> bool) -> bool

fn any<A>(&mut self, |A| -> bool) -> bool

fn find<A>(&mut self, |&A| -> bool) -> Option<A>

fn position<A>(&mut self, |A| -> bool) -> Option<uint>

fn max_by<B: Ord>(&mut self, |&A| -> B) -> Option<A>

fn min_by<B: Ord>(&mut self, |&A| -> B) -> Option<A>

impl<A> DoubleEndedIterator<A> for MoveItems<A>

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

fn rev<A>(self) -> Rev<MoveItems<A>>

Derived Implementations

impl<T: Clone> Clone for MoveItems<T>

fn clone<T: Clone>(&self) -> MoveItems<T>

fn clone_from<T: Clone>(&mut self, &MoveItems<T>)