package fx
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- sealed trait ZPure[+W, -S1, +S2, -R, +E, +A] extends AnyRef
ZPure[W, S1, S2, R, E, A]is a purely functional description of a computation that requires an environmentRand an initial stateS1and may either fail with anEor succeed with an updated stateS2and anAalong with in either case a log with entries of typeW.ZPure[W, S1, S2, R, E, A]is a purely functional description of a computation that requires an environmentRand an initial stateS1and may either fail with anEor succeed with an updated stateS2and anAalong with in either case a log with entries of typeW. Because of its polymorphismZPurecan be used to model a variety of effects including context, state, failure, and logging.