maybeparalleliterator

Write your code once. Then toggle between sequential and parallel iterators with a feature flag!

rust let a: Vec<i32> = (0..100).collect(); a.into_maybe_parallel_iterator() .with_min_sequential(2) .map(|n| -n) .enumerate() .flat_map(|(e, n)| vec![e as i32, n, n + 1000].into_maybe_parallel_iterator()) .for_each(|item| { println!("par: {:?}", item); })

Features

Use the rayon feature flag to enable rayon parallelism.

The default is sequential ("rayoff" mode).

Limitations

For now, only supports:

*Only available for IndexedParallelIterator's if rayon feature enabled.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.