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
+4-2Lines changed: 4 additions & 2 deletions
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,6 +779,8 @@
779
779
780
780
### Values
781
781
782
+
execWriterT :: forall w m a. (Apply m) => WriterT w m a -> m w
783
+
782
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
783
785
784
786
liftCatchWriter :: forall w m e a. (m (Tuple a w) -> (e -> m (Tuple a w)) -> m (Tuple a w)) -> WriterT w m a -> (e -> WriterT w m a) -> WriterT w m a
0 commit comments