transformers-0.5.6.2: Concrete functor and monad transformers
Copyright (c) 2007 Yitzak Gale Eric Kidd
License BSD-style (see the file LICENSE)
Maintainer R.Paterson@city.ac.uk
Stability experimental
Portability portable
Safe Haskell Safe
Language Haskell98

Control.Monad.Trans.Maybe

Description

The MaybeT monad transformer extends a monad with the ability to exit the computation without returning a value.

A sequence of actions produces a value only if all the actions in the sequence do. If one exits, the rest of the sequence is skipped and the composite action exits.

For a variant allowing a range of exception values, see Control.Monad.Trans.Except .

Synopsis

The MaybeT monad transformer

newtype MaybeT m a Source #

The parameterizable maybe monad, obtained by composing an arbitrary monad with the Maybe monad.

Computations are actions that may produce a value or exit.

The return function yields a computation that produces that value, while >>= sequences two subcomputations, exiting if either computation does.

Constructors

MaybeT

Fields

Instances

Instances details
MonadTrans MaybeT Source #
Instance details

Defined in Control.Monad.Trans.Maybe

Methods

lift :: Monad m => m a -> MaybeT m a Source #

Monad m => Monad ( MaybeT m) Source #
Instance details

Defined in Control.Monad.Trans.Maybe

Functor m => Functor ( MaybeT m) Source #
Instance details

Defined in Control.Monad.Trans.Maybe

Methods

fmap :: (a -> b) -> MaybeT m a -> MaybeT m b Source #

(<$) :: a -> MaybeT m b -> MaybeT m a Source #

MonadFix m => MonadFix ( MaybeT m) Source #
Instance details

Defined in Control.Monad.Trans.Maybe

Methods

mfix :: (a -> MaybeT m a) -> MaybeT m a Source #

Monad m => MonadFail ( MaybeT m) Source #
Instance details

Defined in Control.Monad.Trans.Maybe

( Functor m, Monad m) => Applicative ( MaybeT m) Source #
Instance details

Defined in Control.Monad.Trans.Maybe

Foldable f => Foldable ( MaybeT f) Source #
Instance details

Defined in Control.Monad.Trans.Maybe

Traversable f => Traversable ( MaybeT f) Source #
Instance details

Defined in Control.Monad.Trans.Maybe

Contravariant m => Contravariant ( MaybeT m) Source #
Instance details

Defined in Control.Monad.Trans.Maybe

Eq1 m => Eq1 ( MaybeT m) Source #
Instance details

Defined in Control.Monad.Trans.Maybe

Methods

liftEq :: (a -> b -> Bool ) -> MaybeT m a -> MaybeT m b -> Bool Source #

Ord1 m => Ord1 ( MaybeT m) Source #
Instance details

Defined in Control.Monad.Trans.Maybe

Read1 m => Read1 ( MaybeT m) Source #
Instance details

Defined in Control.Monad.Trans.Maybe

Show1 m => Show1 ( MaybeT m) Source #
Instance details

Defined in Control.Monad.Trans.Maybe

MonadZip m => MonadZip ( MaybeT m) Source #
Instance details

Defined in Control.Monad.Trans.Maybe

MonadIO m => MonadIO ( MaybeT m) Source #
Instance details

Defined in Control.Monad.Trans.Maybe

( Functor m, Monad m) => Alternative ( MaybeT m) Source #
Instance details

Defined in Control.Monad.Trans.Maybe

Monad m => MonadPlus ( MaybeT m) Source #
Instance details

Defined in Control.Monad.Trans.Maybe

( Eq1 m, Eq a) => Eq ( MaybeT m a) Source #
Instance details

Defined in Control.Monad.Trans.Maybe

( Ord1 m, Ord a) => Ord ( MaybeT m a) Source #
Instance details

Defined in Control.Monad.Trans.Maybe

( Read1 m, Read a) => Read ( MaybeT m a) Source #
Instance details

Defined in Control.Monad.Trans.Maybe

( Show1 m, Show a) => Show ( MaybeT m a) Source #
Instance details

Defined in Control.Monad.Trans.Maybe

mapMaybeT :: (m ( Maybe a) -> n ( Maybe b)) -> MaybeT m a -> MaybeT n b Source #

Transform the computation inside a MaybeT .

Monad transformations

maybeToExceptT :: Functor m => e -> MaybeT m a -> ExceptT e m a Source #

Convert a MaybeT computation to ExceptT , with a default exception value.

exceptToMaybeT :: Functor m => ExceptT e m a -> MaybeT m a Source #

Convert a ExceptT computation to MaybeT , discarding the value of any exception.

Lifting other operations

liftCallCC :: CallCC m ( Maybe a) ( Maybe b) -> CallCC ( MaybeT m) a b Source #

Lift a callCC operation to the new monad.

liftCatch :: Catch e m ( Maybe a) -> Catch e ( MaybeT m) a Source #

Lift a catchE operation to the new monad.

liftListen :: Monad m => Listen w m ( Maybe a) -> Listen w ( MaybeT m) a Source #

Lift a listen operation to the new monad.

liftPass :: Monad m => Pass w m ( Maybe a) -> Pass w ( MaybeT m) a Source #

Lift a pass operation to the new monad.