Struct core::str::SplitNInternal [] [src]

struct SplitNInternal<'a, P: Pattern<'a>> {
    iter: SplitInternal<'a, P>,
    count: usize,
}

Fields

iter
count

The number of splits remaining

Methods

impl<'a, P: Pattern<'a>> SplitNInternal<'a, P>

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

fn next_back(&mut self) -> Option<&'a str> where P::Searcher: ReverseSearcher<'a>

Trait Implementations

impl<'a, P: Pattern<'a>> Clone for SplitNInternal<'a, P> where P::Searcher: Clone

fn clone(&self) -> Self

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