You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/Module.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -667,9 +667,9 @@
667
667
668
668
### Values
669
669
670
-
evalStateT :: forall s m a. (Monad m) => StateT s m a -> s -> m a
670
+
evalStateT :: forall s m a. (Apply m) => StateT s m a -> s -> m a
671
671
672
-
execStateT :: forall s m a. (Monad m) => StateT s m a -> s -> m s
672
+
execStateT :: forall s m a. (Apply m) => StateT s m a -> s -> m s
673
673
674
674
liftCallCCState :: forall s m a b. (((Tuple a s -> m (Tuple b s)) -> m (Tuple a s)) -> m (Tuple a s)) -> ((a -> StateT s m b) -> StateT s m a) -> StateT s m a
675
675
@@ -779,7 +779,7 @@
779
779
780
780
### Values
781
781
782
-
execWriterT :: forall w m a. (Monad m) => WriterT w m a -> m w
782
+
execWriterT :: forall w m a. (Apply m) => WriterT w m a -> m w
783
783
784
784
liftCallCCWriter :: forall w m a b. (Monoid w) => (((Tuple a w -> m (Tuple b w)) -> m (Tuple a w)) -> m (Tuple a w)) -> ((a -> WriterT w m b) -> WriterT w m a) -> WriterT w m a
0 commit comments