We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d6c32f8 + e719013 commit 74acc8fCopy full SHA for 74acc8f
src/Control/Monad/Eff/Class.purs
@@ -16,7 +16,7 @@ import Control.Monad.Eff (Eff)
16
-- | inference can be tricky. It is generally recommended to either work with a
17
-- | polymorphic row of effects, or a concrete, closed row of effects such as
18
-- | `(trace :: Trace)`.
19
-class Monad m <= MonadEff eff m where
+class Monad m <= MonadEff eff m | m -> eff where
20
liftEff :: forall a. Eff eff a -> m a
21
22
instance monadEffEff :: MonadEff eff (Eff eff) where
0 commit comments