10 breaking releases

0.12.0 Jun 27, 2022
0.10.0 May 27, 2022

#565 in Concurrency

Download history 295/week @ 2023-12-06 462/week @ 2023-12-13 255/week @ 2023-12-20 181/week @ 2023-12-27 473/week @ 2024-01-03 789/week @ 2024-01-10 1163/week @ 2024-01-17 468/week @ 2024-01-24 1663/week @ 2024-01-31 1188/week @ 2024-02-07 976/week @ 2024-02-14 1161/week @ 2024-02-21 497/week @ 2024-02-28 945/week @ 2024-03-06 976/week @ 2024-03-13 424/week @ 2024-03-20

3,137 downloads per month
Used in voronator

MIT/Apache

17KB
363 lines

maybe_parallel_iterator

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

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

  • Iterators
    • into_maybe_par_iter
    • maybe_par_iter
    • maybe_par_iter_mut
  • Sorts
    • maybe_par_sort
    • maybe_par_sort_unstable
    • maybe_par_sort_by
    • maybe_par_sort_unstable_by
    • maybe_par_sort_by_key
    • maybe_par_sort_unstable_by_key

Use the rayon feature flag to enable rayon parallelism.

The default is sequential ("rayoff" mode).

Limitations

For now, only supports these iterator adapters:

  • collect
  • *enumerate
  • filter_map
  • find_any
  • flat_map
  • for_each
  • map
  • *with_min_sequential (no-op unless rayon feature enabled)

*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.

Dependencies

~0–265KB