Struct collections::str::CharIndicesExperimental [-]  [+] [src]

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

External iterator for a string's characters and their byte offsets. Use with the std::iter module.

Trait Implementations

impl<'a> Iterator<(uint, char)> for CharIndices<'a>

fn next(&mut self) -> Option<(uint, char)>

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

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

impl<'a> DoubleEndedIterator<(uint, char)> for CharIndices<'a>

fn next_back(&mut self) -> Option<(uint, char)>

Derived Implementations

impl<'a> Clone for CharIndices<'a>

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

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