Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 307 Bytes

Unsafe.md

File metadata and controls

13 lines (7 loc) · 307 Bytes

Module Control.Monad.Eff.Unsafe

unsafeInterleaveEff

unsafeInterleaveEff :: forall eff1 eff2 a. 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.