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