Struct unicode::str::GraphemeIndicesExperimental [-]  [+] [src]

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

External iterator for grapheme clusters and byte offsets.

Trait Implementations

impl<'a> Iterator<(uint, &'a str)> for GraphemeIndices<'a>

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

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

impl<'a> DoubleEndedIterator<(uint, &'a str)> for GraphemeIndices<'a>

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

Derived Implementations

impl<'a> Clone for GraphemeIndices<'a>

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

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