Struct collections::slice::RSplitN1.0.0 [] [src]

pub struct RSplitN<'a, T, P> where
    P: FnMut(&T) -> bool,
    T: 'a, 
{ /* fields omitted */ }

An iterator over subslices separated by elements that match a predicate function, limited to a given number of splits, starting from the end of the slice.

This struct is created by the rsplitn method on slices.

Trait Implementations

impl<'a, T, P> FusedIterator for RSplitN<'a, T, P> where
    P: FnMut(&T) -> bool, 
[src]

impl<'a, T, P> Debug for RSplitN<'a, T, P> where
    P: FnMut(&T) -> bool,
    T: 'a + Debug
1.9.0
[src]

[src]

Formats the value using the given formatter.

impl<'a, T, P> Iterator for RSplitN<'a, T, P> where
    P: FnMut(&T) -> bool, 
[src]

[src]

[src]