orx-parallel 4.0.0

Performant parallel computations with an expressive iterator API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(test)]
mod tests;

mod collect;
mod collect_arb;
mod elem;
mod fold;
mod next;
mod next_any;
mod reduce;

pub use collect::collect;
pub use collect_arb::collect_arb;
pub use fold::fold;
pub use next::next;
pub use next_any::next_any;
pub use reduce::reduce;