pub trait Spliterator: Iterator + Sized {
    fn split(&mut self) -> Option<Self>;
}
Expand description

An iterator that can be split.

Required methods

Split this iterator in two, if possible.

Implementors