Portability | portable |
---|---|
Stability | experimental |
Maintainer | [email protected] |
Control.Monad.Trans.List
Description
The List monad.
The ListT monad transformer
Parameterizable list monad, with an inner monad.
Note: this does not yield a monad unless the argument monad is commutative.
Lifting other operations
liftCallCC :: ((([a] -> m [b]) -> m [a]) -> m [a]) -> ((a -> ListT m b) -> ListT m a) -> ListT m aSource
Lift a callCC
operation to the new monad.