free-5.1.10: Monads for free
Copyright (C) 2013 Edward Kmett
License BSD-style (see the file LICENSE)
Maintainer Edward Kmett <ekmett@gmail.com>
Stability provisional
Portability MPTCs, fundeps
Safe Haskell Safe
Language Haskell2010

Control.Monad.Trans.Iter

Description

Based on Capretta's Iterative Monad Transformer

Unlike Free , this is a true monad transformer.

Synopsis

Documentation

Functions in Haskell are meant to be pure. For example, if an expression has type Int, there should exist a value of the type such that the expression can be replaced by that value in any context without changing the meaning of the program.

Some computations may perform side effects ( unsafePerformIO ), throw an exception (using error ); or not terminate ( let infinity = 1 + infinity in infinity ).

While the IO monad encapsulates side-effects, and the Either monad encapsulates errors, the Iter monad encapsulates non-termination. The IterT transformer generalizes non-termination to any monadic computation.

Computations in IterT (or Iter ) can be composed in two ways:

  • Sequential: Using the Monad instance, the result of a computation can be fed into the next.
  • Parallel: Using the MonadPlus instance, several computations can be executed concurrently, and the first to finish will prevail. See also the cabbage example .

The iterative monad transformer

newtype IterT m a Source #

The monad supporting iteration based over a base monad m .

IterT ~ FreeT Identity

Constructors

IterT

Fields

Instances

Instances details
MonadTrans IterT Source #
Instance details

Defined in Control.Monad.Trans.Iter

Methods

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

MonadWriter w m => MonadWriter w ( IterT m) Source #
Instance details

Defined in Control.Monad.Trans.Iter

MonadState s m => MonadState s ( IterT m) Source #
Instance details

Defined in Control.Monad.Trans.Iter

MonadReader e m => MonadReader e ( IterT m) Source #
Instance details

Defined in Control.Monad.Trans.Iter

MonadError e m => MonadError e ( IterT m) Source #
Instance details

Defined in Control.Monad.Trans.Iter

Monad m => MonadFree Identity ( IterT m) Source #
Instance details

Defined in Control.Monad.Trans.Iter

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

Defined in Control.Monad.Trans.Iter

Monad m => Functor ( IterT m) Source #
Instance details

Defined in Control.Monad.Trans.Iter

Methods

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

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

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

Defined in Control.Monad.Trans.Iter

Methods

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

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

Defined in Control.Monad.Trans.Iter

Monad m => Applicative ( IterT m) Source #
Instance details

Defined in Control.Monad.Trans.Iter

Foldable m => Foldable ( IterT m) Source #
Instance details

Defined in Control.Monad.Trans.Iter

( Monad m, Traversable m) => Traversable ( IterT m) Source #
Instance details

Defined in Control.Monad.Trans.Iter

Methods

traverse :: Applicative f => (a -> f b) -> IterT m a -> f ( IterT m b) Source #

sequenceA :: Applicative f => IterT m (f a) -> f ( IterT m a) Source #

mapM :: Monad m0 => (a -> m0 b) -> IterT m a -> m0 ( IterT m b) Source #

sequence :: Monad m0 => IterT m (m0 a) -> m0 ( IterT m a) Source #

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

Defined in Control.Monad.Trans.Iter

Methods

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

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

Defined in Control.Monad.Trans.Iter

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

Defined in Control.Monad.Trans.Iter

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

Defined in Control.Monad.Trans.Iter

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

Defined in Control.Monad.Trans.Iter

Monad m => Alternative ( IterT m) Source #
Instance details

Defined in Control.Monad.Trans.Iter

Monad m => MonadPlus ( IterT m) Source #

Capretta's race combinator. Satisfies left catch.

Instance details

Defined in Control.Monad.Trans.Iter

MonadThrow m => MonadThrow ( IterT m) Source #
Instance details

Defined in Control.Monad.Trans.Iter

MonadCatch m => MonadCatch ( IterT m) Source #
Instance details

Defined in Control.Monad.Trans.Iter

Methods

catch :: Exception e => IterT m a -> (e -> IterT m a) -> IterT m a Source #

MonadCont m => MonadCont ( IterT m) Source #
Instance details

Defined in Control.Monad.Trans.Iter

Methods

callCC :: ((a -> IterT m b) -> IterT m a) -> IterT m a Source #

( Monad m, Traversable1 m) => Traversable1 ( IterT m) Source #
Instance details

Defined in Control.Monad.Trans.Iter

Methods

traverse1 :: Apply f => (a -> f b) -> IterT m a -> f ( IterT m b) Source #

sequence1 :: Apply f => IterT m (f b) -> f ( IterT m b) Source #

Monad m => Apply ( IterT m) Source #
Instance details

Defined in Control.Monad.Trans.Iter

Monad m => Bind ( IterT m) Source #
Instance details

Defined in Control.Monad.Trans.Iter

Foldable1 m => Foldable1 ( IterT m) Source #
Instance details

Defined in Control.Monad.Trans.Iter

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

Defined in Control.Monad.Trans.Iter

( Typeable m, Typeable a, Data (m ( Either a ( IterT m a))), Data a) => Data ( IterT m a) Source #
Instance details

Defined in Control.Monad.Trans.Iter

Methods

gfoldl :: ( forall d b. Data d => c (d -> b) -> d -> c b) -> ( forall g. g -> c g) -> IterT m a -> c ( IterT m a) Source #

gunfold :: ( forall b r. Data b => c (b -> r) -> c r) -> ( forall r. r -> c r) -> Constr -> c ( IterT m a) Source #

toConstr :: IterT m a -> Constr Source #

dataTypeOf :: IterT m a -> DataType Source #

dataCast1 :: Typeable t => ( forall d. Data d => c (t d)) -> Maybe (c ( IterT m a)) Source #

dataCast2 :: Typeable t => ( forall d e. ( Data d, Data e) => c (t d e)) -> Maybe (c ( IterT m a)) Source #

gmapT :: ( forall b. Data b => b -> b) -> IterT m a -> IterT m a Source #

gmapQl :: (r -> r' -> r) -> r -> ( forall d. Data d => d -> r') -> IterT m a -> r Source #

gmapQr :: forall r r'. (r' -> r -> r) -> r -> ( forall d. Data d => d -> r') -> IterT m a -> r Source #

gmapQ :: ( forall d. Data d => d -> u) -> IterT m a -> [u] Source #

gmapQi :: Int -> ( forall d. Data d => d -> u) -> IterT m a -> u Source #

gmapM :: Monad m0 => ( forall d. Data d => d -> m0 d) -> IterT m a -> m0 ( IterT m a) Source #

gmapMp :: MonadPlus m0 => ( forall d. Data d => d -> m0 d) -> IterT m a -> m0 ( IterT m a) Source #

gmapMo :: MonadPlus m0 => ( forall d. Data d => d -> m0 d) -> IterT m a -> m0 ( IterT m a) Source #

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

Defined in Control.Monad.Trans.Iter

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

Defined in Control.Monad.Trans.Iter

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

Defined in Control.Monad.Trans.Iter

( Monad m, Semigroup a) => Semigroup ( IterT m a) Source #
Instance details

Defined in Control.Monad.Trans.Iter

( Monad m, Semigroup a, Monoid a) => Monoid ( IterT m a) Source #
Instance details

Defined in Control.Monad.Trans.Iter

Capretta's iterative monad

type Iter = IterT Identity Source #

Plain iterative computations.

iter :: Either a ( Iter a) -> Iter a Source #

Builds an iterative computation from one first step.

runIter . iter == id

runIter :: Iter a -> Either a ( Iter a) Source #

Executes the first step of an iterative computation

iter . runIter == id

Combinators

delay :: ( Monad f, MonadFree f m) => m a -> m a Source #

Adds an extra layer to a free monad value.

In particular, for the iterative monad Iter , this makes the computation require one more step, without changing its final result.

runIter (delay ma) == Right ma

hoistIterT :: Monad n => ( forall a. m a -> n a) -> IterT m b -> IterT n b Source #

Lift a monad homomorphism from m to n into a Monad homomorphism from IterT m to IterT n .

liftIter :: Monad m => Iter a -> IterT m a Source #

Lifts a plain, non-terminating computation into a richer environment. liftIter is a Monad homomorphism.

cutoff :: Monad m => Integer -> IterT m a -> IterT m ( Maybe a) Source #

Cuts off an iterative computation after a given number of steps. If the number of steps is 0 or less, no computation nor monadic effects will take place.

The step where the final value is produced also counts towards the limit.

Some examples ( n ≥ 0 ):

cutoff 0     _        ≡ return Nothing
cutoff (n+1) . returnreturn . Just
cutoff (n+1) . liftlift . liftM Just
cutoff (n+1) . delaydelay . cutoff n
cutoff n     neveriterate delay (return Nothing) !! n

Calling retract . cutoff n is always terminating, provided each of the steps in the iteration is terminating.

never :: ( Monad f, MonadFree f m) => m a Source #

A computation that never terminates

untilJust :: Monad m => m ( Maybe a) -> IterT m a Source #

Repeatedly run a computation until it produces a Just value. This can be useful when paired with a monad that has side effects.

For example, we may have genId :: IO (Maybe Id) that uses a random number generator to allocate ids, but fails if it finds a collision. We can repeatedly run this with

retract (untilJust genId) :: IO Id

interleave :: Monad m => [ IterT m a] -> IterT m [a] Source #

Interleaves the steps of a finite list of iterative computations, and collects their results.

The resulting computation has as many steps as the longest computation in the list.

interleave_ :: Monad m => [ IterT m a] -> IterT m () Source #

Interleaves the steps of a finite list of computations, and discards their results.

The resulting computation has as many steps as the longest computation in the list.

Equivalent to void . interleave .

Consuming iterative monads

retract :: Monad m => IterT m a -> m a Source #

retract is the left inverse of lift

retract . lift = id

fold :: Monad m => (m a -> a) -> IterT m a -> a Source #

Tear down a Free Monad using iteration.

foldM :: ( Monad m, Monad n) => (m (n a) -> n a) -> IterT m a -> n a Source #

Like fold with monadic result.

IterT ~ FreeT Identity

class Monad m => MonadFree f m | m -> f where Source #

Monads provide substitution ( fmap ) and renormalization ( join ):

m >>= f = join (fmap f m)

A free Monad is one that does no work during the normalization step beyond simply grafting the two monadic values together.

[] is not a free Monad (in this sense) because join [[a]] smashes the lists flat.

On the other hand, consider:

data Tree a = Bin (Tree a) (Tree a) | Tip a
instance Monad Tree where
  return = Tip
  Tip a >>= f = f a
  Bin l r >>= f = Bin (l >>= f) (r >>= f)

This Monad is the free Monad of Pair:

data Pair a = Pair a a

And we could make an instance of MonadFree for it directly:

instance MonadFree Pair Tree where
   wrap (Pair l r) = Bin l r

Or we could choose to program with Free Pair instead of Tree and thereby avoid having to define our own Monad instance.

Moreover, Control.Monad.Free.Church provides a MonadFree instance that can improve the asymptotic complexity of code that constructs free monads by effectively reassociating the use of ( >>= ). You may also want to take a look at the kan-extensions package ( http://hackage.haskell.org/package/kan-extensions ).

See Free for a more formal definition of the free Monad for a Functor .

Minimal complete definition

Nothing

Methods

wrap :: f (m a) -> m a Source #

Add a layer.

wrap (fmap f x) ≡ wrap (fmap return x) >>= f

default wrap :: (m ~ t n, MonadTrans t, MonadFree f n, Functor f) => f (m a) -> m a Source #

Instances

Instances details
( Functor f, MonadFree f m) => MonadFree f ( ListT m) Source #
Instance details

Defined in Control.Monad.Free.Class

Methods

wrap :: f ( ListT m a) -> ListT m a Source #

( Functor f, MonadFree f m) => MonadFree f ( MaybeT m) Source #
Instance details

Defined in Control.Monad.Free.Class

Methods

wrap :: f ( MaybeT m a) -> MaybeT m a Source #

Applicative f => MonadFree f ( Free f) Source #
Instance details

Defined in Control.Monad.Free.Ap

Methods

wrap :: f ( Free f a) -> Free f a Source #

Functor f => MonadFree f ( Free f) Source #
Instance details

Defined in Control.Monad.Free

Methods

wrap :: f ( Free f a) -> Free f a Source #

Functor f => MonadFree f ( F f) Source #
Instance details

Defined in Control.Monad.Free.Church

Methods

wrap :: f ( F f a) -> F f a Source #

Monad m => MonadFree Identity ( IterT m) Source #
Instance details

Defined in Control.Monad.Trans.Iter

( Functor f, MonadFree f m, Error e) => MonadFree f ( ErrorT e m) Source #
Instance details

Defined in Control.Monad.Free.Class

Methods

wrap :: f ( ErrorT e m a) -> ErrorT e m a Source #

( Functor f, MonadFree f m) => MonadFree f ( ExceptT e m) Source #
Instance details

Defined in Control.Monad.Free.Class

Methods

wrap :: f ( ExceptT e m a) -> ExceptT e m a Source #

( Functor f, MonadFree f m) => MonadFree f ( IdentityT m) Source #
Instance details

Defined in Control.Monad.Free.Class

( Functor f, MonadFree f m, Monoid w) => MonadFree f ( WriterT w m) Source #
Instance details

Defined in Control.Monad.Free.Class

Methods

wrap :: f ( WriterT w m a) -> WriterT w m a Source #

( Functor f, MonadFree f m, Monoid w) => MonadFree f ( WriterT w m) Source #
Instance details

Defined in Control.Monad.Free.Class

Methods

wrap :: f ( WriterT w m a) -> WriterT w m a Source #

( Functor f, MonadFree f m) => MonadFree f ( StateT s m) Source #
Instance details

Defined in Control.Monad.Free.Class

Methods

wrap :: f ( StateT s m a) -> StateT s m a Source #

( Functor f, MonadFree f m) => MonadFree f ( StateT s m) Source #
Instance details

Defined in Control.Monad.Free.Class

Methods

wrap :: f ( StateT s m a) -> StateT s m a Source #

( Functor f, MonadFree f m) => MonadFree f ( ReaderT e m) Source #
Instance details

Defined in Control.Monad.Free.Class

Methods

wrap :: f ( ReaderT e m a) -> ReaderT e m a Source #

( Applicative f, Applicative m, Monad m) => MonadFree f ( FreeT f m) Source #
Instance details

Defined in Control.Monad.Trans.Free.Ap

Methods

wrap :: f ( FreeT f m a) -> FreeT f m a Source #

( Functor f, Monad m) => MonadFree f ( FreeT f m) Source #
Instance details

Defined in Control.Monad.Trans.Free

Methods

wrap :: f ( FreeT f m a) -> FreeT f m a Source #

MonadFree f ( FT f m) Source #
Instance details

Defined in Control.Monad.Trans.Free.Church

Methods

wrap :: f ( FT f m a) -> FT f m a Source #

( Functor f, MonadFree f m) => MonadFree f ( ContT r m) Source #
Instance details

Defined in Control.Monad.Free.Class

Methods

wrap :: f ( ContT r m a) -> ContT r m a Source #

( Functor f, MonadFree f m, Monoid w) => MonadFree f ( RWST r w s m) Source #
Instance details

Defined in Control.Monad.Free.Class

Methods

wrap :: f ( RWST r w s m a) -> RWST r w s m a Source #

( Functor f, MonadFree f m, Monoid w) => MonadFree f ( RWST r w s m) Source #
Instance details

Defined in Control.Monad.Free.Class

Methods

wrap :: f ( RWST r w s m a) -> RWST r w s m a Source #

Examples