Struct std::collections::trie::SetItems[src]
pub struct SetItems<'a> {
// some fields omitted
}Forward iterator over a set
pub struct SetItems<'a> {
// some fields omitted
}Forward iterator over a set
impl<'a> Iterator<uint> for SetItems<'a>fn next<'a>(&mut self) -> Option<uint>fn size_hint<'a>(&self) -> (uint, Option<uint>)fn size_hint<'a>(&self) -> (uint, Option<uint>)fn chain<U: Iterator<uint>>(self, U) -> Chain<SetItems<'a>, U>fn zip<B, U: Iterator<B>>(self, U) -> Zip<SetItems<'a>, U>fn map<B>(self, |uint|: 'r -> B) -> Map<'r, uint, B, SetItems<'a>>fn filter<'a>(self, |&uint|: 'r -> bool) -> Filter<'r, uint, SetItems<'a>>fn filter_map<B>(self, |uint|: 'r -> Option<B>) -> FilterMap<'r, uint, B, SetItems<'a>>fn enumerate<'a>(self) -> Enumerate<SetItems<'a>>fn peekable<'a>(self) -> Peekable<uint, SetItems<'a>>fn skip_while<'a>(self, |&uint|: 'r -> bool) -> SkipWhile<'r, uint, SetItems<'a>>fn take_while<'a>(self, |&uint|: 'r -> bool) -> TakeWhile<'r, uint, SetItems<'a>>fn skip<'a>(self, uint) -> Skip<SetItems<'a>>fn take<'a>(self, uint) -> Take<SetItems<'a>>fn scan<St, B>(self, St, |&mut St, uint|: 'r -> Option<B>) -> Scan<'r, uint, B, SetItems<'a>, St>fn flat_map<B, U: Iterator<B>>(self, |uint|: 'r -> U) -> FlatMap<'r, uint, SetItems<'a>, U>fn fuse<'a>(self) -> Fuse<SetItems<'a>>fn inspect<'a>(self, |&uint|: 'r) -> Inspect<'r, uint, SetItems<'a>>fn by_ref<'a>(&'r mut self) -> ByRef<'r, SetItems<'a>>fn advance<'a>(&mut self, |uint| -> bool) -> boolfn collect<B: FromIterator<uint>>(&mut self) -> Bfn nth<'a>(&mut self, uint) -> Option<uint>fn last<'a>(&mut self) -> Option<uint>fn fold<B>(&mut self, B, |B, uint| -> B) -> Bfn count<'a>(&mut self) -> uintfn all<'a>(&mut self, |uint| -> bool) -> boolfn any<'a>(&mut self, |uint| -> bool) -> boolfn find<'a>(&mut self, |&uint| -> bool) -> Option<uint>fn position<'a>(&mut self, |uint| -> bool) -> Option<uint>fn max_by<B: Ord>(&mut self, |&uint| -> B) -> Option<uint>fn min_by<B: Ord>(&mut self, |&uint| -> B) -> Option<uint>
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).