plmap 0.0.1

Parallel pipelined map over iterators.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# plmap

Parallel pipelined map over iterators for rust.

# Example

```
// Import the iterator extension trait.
use plmap::PipelineMap;

// Map over an iterator in parallel with 5 worker threads.
fn example() {
    for i in (0..100).plmap(5, |x| x * 2) {
        println!("i={}", i);
    }
}
```