Module
Effect
- Package
- purescript-effect
- Repository
- purescript/purescript-effect
This module provides the Effect
type, which is used to represent
native effects. The Effect
type provides a typed API for effectful
computations, while at the same time generating efficient JavaScript.
The
Semigroup
instance for effects allows you to run two effects, one after the other, and then combine their results using the result type'sSemigroup
instance.