Expand description
An extension trait to provide Iterator adapters that process items in parallel.
The heart of this crate (and what should be considered its entry point) is the Polyester
trait, which is applied to any Iterator where it and its items are Send.
Structs§
- ParMap
- A parallel
mapadapter, which uses multiple threads to process items.
Traits§
- Polyester
- A trait to extend
Iterators with consumers that work in parallel.
Functions§
- set_
thread_ count - Sets the number of threads started by the
Polyesteradaptors.