[−][src]Trait rayon::iter::internal::Folder
Associated Types
type Result
Required methods
fn consume(self, item: Item) -> Self
Consume next item and return new sequential state.
fn complete(self) -> Self::Result
Finish consuming items, produce final result.
fn full(&self) -> bool
Hint whether this Folder
would like to stop processing
further items, e.g. if a search has been completed.
Provided methods
fn consume_iter<I>(self, iter: I) -> Self where
I: IntoIterator<Item = Item>,
I: IntoIterator<Item = Item>,
Consume items from the iterator until full, and return new sequential state.