Struct core::str::SplitStrUnstable [-]  [+] [src]

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

An iterator over the substrings of a string separated by a given search string

Trait Implementations

impl<'a> Iterator<&'a str> for SplitStr<'a>

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

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

Derived Implementations

impl<'a> Clone for SplitStr<'a>

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

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