Trait jobsteal::iter::BorrowSpliterator [] [src]

pub trait BorrowSpliterator<'a> {
    type Item: 'a;
    type SplitIter: 'a + Spliterator<Item = Self::Item>;
    fn split_iter(&'a self) -> Self::SplitIter;
}

Things that can have a Spliterator borrowed from them.

Associated Types

Required Methods

Implementors