packages feed

effin 0.1.0.1 → 0.1.1.0

raw patch · 2 files changed

+4/−3 lines, 2 files

Files

effin.cabal view
@@ -1,5 +1,5 @@ name:                effin-version:             0.1.0.1+version:             0.1.1.0 synopsis:            A Typeable-free implementation of extensible effects homepage:            https://github.com/YellPika/effin license:             BSD3@@ -26,7 +26,8 @@   >     $ eliminate (\(Exception e) -> return (Left e))   >     $ defaultRelay   .-  Compare this to the corresponding code in extensible-effects:+  Compare this to the corresponding code in extensible-effects+  (<http://hackage.haskell.org/package/extensible-effects>):   .   > runExc :: Typeable e => Eff (Exc e :> r) a -> Eff r (Either e a)   > runExc = loop . admin
src/Control/Effect/Lift.hs view
@@ -12,7 +12,7 @@ #endif
 
 module Control.Effect.Lift (
-    Lift, runLift, lift
+    EffectLift, Lift, runLift, lift
 ) where
 
 import Control.Monad.Effect