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

pub struct CharSplitsN<'a, Sep> {
    // some fields omitted
}

An iterator over the substrings of a string, separated by sep, splitting at most count times.

Trait Implementations

impl<'a, Sep: CharEq> Iterator<&'a str> for CharSplitsN<'a, Sep>

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

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

Derived Implementations

impl<'a, Sep: Clone> Clone for CharSplitsN<'a, Sep>

fn clone(&self) -> CharSplitsN<'a, Sep>

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