Struct collections::bitv::BitsExperimental [-]  [+] [src]

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

An iterator for Bitv.

Trait Implementations

impl<'a> Iterator<bool> for Bits<'a>

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

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

impl<'a> DoubleEndedIterator<bool> for Bits<'a>

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

impl<'a> ExactSizeIterator<bool> for Bits<'a>

fn rposition<P>(&mut self, predicate: P) -> Option<uint>

fn len(&self) -> uint

impl<'a> RandomAccessIterator<bool> for Bits<'a>

fn indexable(&self) -> uint

fn idx(&mut self, index: uint) -> Option<bool>

Derived Implementations

impl<'a> Clone for Bits<'a>

fn clone(&self) -> Bits<'a>

fn clone_from(&mut self, source: &Self)