Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
Synopsis
- rwsS :: (Functor m, Monad m, Monoid w) => MSF m (r, s, a) (w, s, b) -> MSF (RWST r w s m) a b
- runRWSS :: (Functor m, Monad m, Monoid w) => MSF (RWST r w s m) a b -> MSF m (r, s, a) (w, s, b)
- newtype RWST r w s (m :: Type -> Type) a = RWST {
- runRWST :: r -> s -> m (a, s, w)
- type RWS r w s = RWST r w s Identity
- rws :: (r -> s -> (a, s, w)) -> RWS r w s a
- runRWS :: RWS r w s a -> r -> s -> (a, s, w)
- evalRWS :: RWS r w s a -> r -> s -> (a, w)
- execRWS :: RWS r w s a -> r -> s -> (s, w)
- mapRWS :: ((a, s, w) -> (b, s, w')) -> RWS r w s a -> RWS r w' s b
- withRWS :: (r' -> s -> (r, s)) -> RWS r w s a -> RWS r' w s a
- evalRWST :: Monad m => RWST r w s m a -> r -> s -> m (a, w)
- execRWST :: Monad m => RWST r w s m a -> r -> s -> m (s, w)
- mapRWST :: (m (a, s, w) -> n (b, s, w')) -> RWST r w s m a -> RWST r w' s n b
- withRWST :: (r' -> s -> (r, s)) -> RWST r w s m a -> RWST r' w s m a
- liftCallCC' :: Monoid w => CallCC m (a, s, w) (b, s, w) -> CallCC (RWST r w s m) a b
- gets :: (Monoid w, Monad m) => (s -> a) -> RWST r w s m a
- modify :: (Monoid w, Monad m) => (s -> s) -> RWST r w s m ()
- put :: (Monoid w, Monad m) => s -> RWST r w s m ()
- get :: (Monoid w, Monad m) => RWST r w s m s
- state :: (Monoid w, Monad m) => (s -> (a, s)) -> RWST r w s m a
- censor :: Monad m => (w -> w) -> RWST r w s m a -> RWST r w s m a
- pass :: Monad m => RWST r w s m (a, w -> w) -> RWST r w s m a
- listens :: Monad m => (w -> b) -> RWST r w s m a -> RWST r w s m (a, b)
- listen :: Monad m => RWST r w s m a -> RWST r w s m (a, w)
- tell :: Monad m => w -> RWST r w s m ()
- writer :: Monad m => (a, w) -> RWST r w s m a
- asks :: (Monoid w, Monad m) => (r -> a) -> RWST r w s m a
- local :: (r -> r) -> RWST r w s m a -> RWST r w s m a
- ask :: (Monoid w, Monad m) => RWST r w s m r
- reader :: (Monoid w, Monad m) => (r -> a) -> RWST r w s m a
Documentation
rwsS :: (Functor m, Monad m, Monoid w) => MSF m (r, s, a) (w, s, b) -> MSF (RWST r w s m) a b Source #
runRWSS :: (Functor m, Monad m, Monoid w) => MSF (RWST r w s m) a b -> MSF m (r, s, a) (w, s, b) Source #
Run the RWST
layer by making the state variables explicit.
newtype RWST r w s (m :: Type -> Type) a #
A monad transformer adding reading an environment of type r
,
collecting an output of type w
and updating a state of type s
to an inner monad m
.
Instances
type RWS r w s = RWST r w s Identity #
A monad containing an environment of type r
, output of type w
and an updatable state of type s
.
rws :: (r -> s -> (a, s, w)) -> RWS r w s a #
Construct an RWS computation from a function.
(The inverse of runRWS
.)
runRWS :: RWS r w s a -> r -> s -> (a, s, w) #
Unwrap an RWS computation as a function.
(The inverse of rws
.)
:: RWS r w s a | RWS computation to execute |
-> r | initial environment |
-> s | initial value |
-> (a, w) | final value and output |
Evaluate a computation with the given initial state and environment, returning the final value and output, discarding the final state.
:: RWS r w s a | RWS computation to execute |
-> r | initial environment |
-> s | initial value |
-> (s, w) | final state and output |
Evaluate a computation with the given initial state and environment, returning the final state and output, discarding the final value.
:: Monad m | |
=> RWST r w s m a | computation to execute |
-> r | initial environment |
-> s | initial value |
-> m (a, w) | computation yielding final value and output |
Evaluate a computation with the given initial state and environment, returning the final value and output, discarding the final state.
:: Monad m | |
=> RWST r w s m a | computation to execute |
-> r | initial environment |
-> s | initial value |
-> m (s, w) | computation yielding final state and output |
Evaluate a computation with the given initial state and environment, returning the final state and output, discarding the final value.
liftCallCC' :: Monoid w => CallCC m (a, s, w) (b, s, w) -> CallCC (RWST r w s m) a b #
In-situ lifting of a callCC
operation to the new monad.
This version uses the current state on entering the continuation.
get :: (Monoid w, Monad m) => RWST r w s m s #
Fetch the current value of the state within the monad.
state :: (Monoid w, Monad m) => (s -> (a, s)) -> RWST r w s m a #
Construct a state monad computation from a state transformer function.
writer :: Monad m => (a, w) -> RWST r w s m a #
Construct a writer computation from a (result, output) pair.