Module
Control.Monad.Eff.Unsafe
- Package
- purescript-effDEPRECATED
- Repository
- purescript/purescript-eff
#unsafeCoerceEff Source
unsafeCoerceEff :: forall a eff2 eff1. Eff eff1 a -> Eff eff2 a
Change the type of an effectful computation, allowing it to be run in another context.
Note: use of this function can result in arbitrary side-effects.
#unsafePerformEff Source
unsafePerformEff :: forall a eff. Eff eff a -> a
Run an effectful computation.
Note: use of this function can result in arbitrary side-effects.