Trait jobsteal::iter::IntoSpliterator [] [src]

pub trait IntoSpliterator {
    type Item;
    type SplitIter: Spliterator<Item = Self::Item>;
    fn into_split_iter(self) -> Self::SplitIter;
}

Things that can be turned into a Spliterator.

Associated Types

The item the split iterator will produce.

The iterator this will turn into.

Required Methods

Implementors