Struct collections::slice::RSplit [] [src]

pub struct RSplit<'a, T, P> where
    P: FnMut(&T) -> bool,
    T: 'a, 
{ /* fields omitted */ }
🔬 This is a nightly-only experimental API. (slice_rsplit #41020)

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

This struct is created by the rsplit method on slices.

Trait Implementations

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

[src]

🔬 This is a nightly-only experimental API. (slice_rsplit #41020)

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

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

[src]

Formats the value using the given formatter.

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

🔬 This is a nightly-only experimental API. (slice_rsplit #41020)

[src]

🔬 This is a nightly-only experimental API. (slice_rsplit #41020)

[src]

🔬 This is a nightly-only experimental API. (slice_rsplit #41020)

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

[src]

🔬 This is a nightly-only experimental API. (slice_rsplit #41020)