orx_parallel/computational_variants/
mod.rs

1#[cfg(test)]
2mod tests;
3
4/// A parallel iterator for which the computation either completely succeeds,
5/// or fails and **early exits** with None.
6pub mod fallible_option;
7/// A parallel iterator for which the computation either completely succeeds,
8/// or fails and **early exits** with an error.
9pub mod fallible_result;
10mod map;
11mod par;
12mod xap;
13
14pub use map::ParMap;
15pub use par::Par;
16pub use xap::ParXap;