1//! ParallelTaskIter is the underlying trait for a data parallelism library
2//! built on the 'pull' approach.
3pub mod map;
4pub mod collector;
5pub mod worker_thread;
6pub mod errors;
7pub mod prelude;
8pub mod iterators;
9pub mod task_queue;
10pub mod for_each;