[][src]Struct dinotree_alg::util::SliceSplitMut

pub struct SliceSplitMut<'a, T, F> { /* fields omitted */ }

Splits a mutable slice into multiple slices The splits occur where the predicate returns false.

Methods

impl<'a, T, F: FnMut(&T, &T) -> bool> SliceSplitMut<'a, T, F>[src]

Important traits for SliceSplitMut<'a, T, F>
pub fn new(arr: &'a mut [T], func: F) -> SliceSplitMut<'a, T, F>[src]

Trait Implementations

impl<'a, T, F: FnMut(&T, &T) -> bool> Iterator for SliceSplitMut<'a, T, F>[src]

type Item = &'a mut [T]

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, T, F> Unpin for SliceSplitMut<'a, T, F> where
    F: Unpin

impl<'a, T, F> Send for SliceSplitMut<'a, T, F> where
    F: Send,
    T: Send

impl<'a, T, F> Sync for SliceSplitMut<'a, T, F> where
    F: Sync,
    T: Sync

impl<'a, T, F> !UnwindSafe for SliceSplitMut<'a, T, F>

impl<'a, T, F> RefUnwindSafe for SliceSplitMut<'a, T, F> where
    F: RefUnwindSafe,
    T: RefUnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<I> IsSorted for I where
    I: Iterator
[src]

impl<T> Itertools for T where
    T: Iterator + ?Sized
[src]

impl<T> ParallelBridge for T where
    T: Send + Iterator,
    <T as Iterator>::Item: Send
[src]