Struct std::collections::dlist::Items[src]
pub struct Items<'a, T> {
// some fields omitted
}Double-ended DList iterator
pub struct Items<'a, T> {
// some fields omitted
}Double-ended DList iterator
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) -> boolfn collect<B: FromIterator<&'a A>>(&mut self) -> Bfn 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) -> Bfn count<'a, A>(&mut self) -> uintfn all<'a, A>(&mut self, |&'a A| -> bool) -> boolfn any<'a, A>(&mut self, |&'a A| -> bool) -> boolfn 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>impl<'a, A> ExactSize<&'a A> for Items<'a, A>
Prefix searches with a type followed by a colon (e.g.
fn:) to restrict the search to a given type.
Accepted types are: fn, mod,
struct (or str), enum,
trait, typedef (or
tdef).