Struct std::collections::bitv::BitPositions[src]

pub struct BitPositions<'a> {
    // some fields omitted
}

Trait Implementations

impl<'a> Iterator<uint> for BitPositions<'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<BitPositions<'a>, U>

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

fn map<B>(self, |uint|: 'r -> B) -> Map<'r, uint, B, BitPositions<'a>>

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

fn filter_map<B>(self, |uint|: 'r -> Option<B>) -> FilterMap<'r, uint, B, BitPositions<'a>>

fn enumerate<'a>(self) -> Enumerate<BitPositions<'a>>

fn peekable<'a>(self) -> Peekable<uint, BitPositions<'a>>

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

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

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

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

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

fn flat_map<B, U: Iterator<B>>(self, |uint|: 'r -> U) -> FlatMap<'r, uint, BitPositions<'a>, U>

fn fuse<'a>(self) -> Fuse<BitPositions<'a>>

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

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

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

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

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

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

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

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

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

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

fn 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>