Expand description
The Composite trait to create disposable computations.
Structs§
- AndThen
- The monadic bind for the
Compositecomputation. - Ap
- The function application for the
Compositecomputation. - Composite
Box - It represents the boxed
Compositecomputation. - Cons
- Allows constructing the
Compositecomputation by the specified function. - Delay
- Allows delaying the
Compositecomputation by the specified function. - Disposable
Composite - Computation that allows embedding
Disposableactions. - Map
- The functor for the
Compositecomputation. - Return
- Allows creating the
Compositecomputation from a pure value. - Run
- The run function for
Compositecomputation. - Run_
- Another version of the run function for
Compositecomputation. - Sequence
- The sequence of computations.
- Sequence_
- The sequence of computations with ignored result.
- Trace
- Trace the computation.
- Zip
- The zip of two
Compositecomputations.
Traits§
- Composite
- The computation synchronized with the composite queue.
- Into
Composite - Allows converting to
Compositecomputations.
Functions§
- composite_
sequence - Create a sequence of computations.
- composite_
sequence_ - Create a sequence of computations, where the result is ignored.
- cons_
composite - Construct a new
Compositecomputation by the specified function. - delay_
composite - Delay the
Compositecomputation. - disposable_
composite - Allows embedding arbitrary
Disposableactions inCompositecomputation. - return_
composite - Return a new
Compositecomputation by the specified pure value. - trace_
composite - Trace the computation.