orx-parallel 3.4.0

High performance, configurable and expressive parallel computation library.
Documentation
1
2
3
4
5
6
7
8
9
10
/// Computation kind.
#[derive(Clone, Copy)]
pub enum ComputationKind {
    /// Computation where outputs are collected into a collection.
    Collect,
    /// Computation where the inputs or intermediate results are reduced to a single value.
    Reduce,
    /// Computation which allows for early returns, such as `find` operation.
    EarlyReturn,
}