Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
Synopsis
- type Cont r = ContT r Identity
- cont :: ((a -> r) -> r) -> Cont r a
- runCont :: Cont r a -> (a -> r) -> r
- mapCont :: (r -> r) -> Cont r a -> Cont r a
- withCont :: ((b -> r) -> a -> r) -> Cont r a -> Cont r b
- newtype ContT (r :: k) (m :: k -> *) a :: forall k. k -> (k -> *) -> * -> * = ContT {
- runContT :: (a -> m r) -> m r
- mapContT :: (m r -> m r) -> ContT r m a -> ContT r m a
- withContT :: ((b -> m r) -> a -> m r) -> ContT r m a -> ContT r m b
- class Monad m => MonadCont (m :: * -> *) where
Cont
type Cont r = ContT r Identity #
Continuation monad.
Cont r a
is a CPS ("continuation-passing style") computation that produces an
intermediate result of type a
within a CPS computation whose final result type
is r
.
The return
function simply creates a continuation which passes the value on.
The >>=
operator adds the bound function into the continuation chain.
cont :: ((a -> r) -> r) -> Cont r a #
Construct a continuation-passing computation from a function.
(The inverse of runCont
)
:: Cont r a | continuation computation ( |
-> (a -> r) | the final continuation, which produces
the final result (often |
-> r |
The result of running a CPS computation with a given final continuation.
(The inverse of cont
)
ContT
newtype ContT (r :: k) (m :: k -> *) a :: forall k. k -> (k -> *) -> * -> * #
The continuation monad transformer.
Can be used to add continuation handling to any type constructor:
the Monad
instance and most of the operations do not require m
to be a monad.
ContT
is not a functor on the category of monads, and many operations
cannot be lifted through it.
Instances
MonadCont
class Monad m => MonadCont (m :: * -> *) where #
callCC :: ((a -> m b) -> m a) -> m a #
callCC
(call-with-current-continuation)
calls a function with the current continuation as its argument.
Provides an escape continuation mechanism for use with Continuation monads.
Escape continuations allow to abort the current computation and return
a value immediately.
They achieve a similar effect to throwError
and catchError
within an Error
monad.
Advantage of this function over calling return
is that it makes
the continuation explicit,
allowing more flexibility and better control
(see examples in Control.Monad.Cont).
The standard idiom used with callCC
is to provide a lambda-expression
to name the continuation. Then calling the named continuation anywhere
within its scope will escape from the computation,
even if it is many layers deep within nested computations.
Instances
MonadCont m => MonadCont (MaybeT m) | |
(Functor m, MonadCont m) => MonadCont (Free m) | |
MonadCont m => MonadCont (ListT m) | |
MonadCont m => MonadCont (IdentityT m) | |
MonadCont m => MonadCont (ExceptT e m) | Since: mtl-2.2 |
(Functor f, MonadCont m) => MonadCont (FreeT f m) | |
(Error e, MonadCont m) => MonadCont (ErrorT e m) | |
(Monoid w, MonadCont m) => MonadCont (WriterT w m) | |
MonadCont m => MonadCont (StateT s m) | |
MonadCont m => MonadCont (StateT s m) | |
(Monoid w, MonadCont m) => MonadCont (WriterT w m) | |
MonadCont m => MonadCont (ReaderT r m) | |
(Stream s, MonadCont m) => MonadCont (ParsecT e s m) | |
MonadCont (ContT r m) | |
(Monoid w, MonadCont m) => MonadCont (RWST r w s m) | |
(Monoid w, MonadCont m) => MonadCont (RWST r w s m) | |