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

pub struct Items<'a, T> {
    // some fields omitted
}

Double-ended DList iterator

Trait Implementations

impl<'a, T> Clone for Items<'a, T>

fn clone<'a, T>(&self) -> Items<'a, T>

fn clone_from<'a, T>(&mut self, &Items<'a, T>)

impl<'a, A> Iterator<&'a A> for Items<'a, A>

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

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

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

fn chain<U: Iterator<&'a A>>(self, U) -> Chain<Items<'a, A>, U>

fn zip<B, U: Iterator<B>>(self, U) -> Zip<Items<'a, A>, U>

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

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

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

fn enumerate<'a, A>(self) -> Enumerate<Items<'a, A>>

fn peekable<'a, A>(self) -> Peekable<&'a A, Items<'a, A>>

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

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

fn skip<'a, A>(self, uint) -> Skip<Items<'a, A>>

fn take<'a, A>(self, uint) -> Take<Items<'a, A>>

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

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

fn fuse<'a, A>(self) -> Fuse<Items<'a, A>>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

impl<'a, A> DoubleEndedIterator<&'a A> for Items<'a, A>

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

fn rev<'a, A>(self) -> Rev<Items<'a, A>>

impl<'a, A> ExactSize<&'a A> for Items<'a, A>

fn rposition<'a, A>(&mut self, |&'a A| -> bool) -> Option<uint>

fn len<'a, A>(&self) -> uint