mzv-0.1.0.2: Implementation of the "Monads, Zippers and Views" (Schrijvers and Oliveira, ICFP'11)

Portabilitynon-portable (multi-parameter type classes)
Stabilityexperimental
Maintainerlibraries@haskell.org
Safe HaskellSafe-Inferred

Control.Monad.List

Description

The List monad.

Documentation

newtype ListT m a Source

Constructors

ListT 

Fields

runListT :: m [a]
 

Instances

mapListT :: (m [a] -> n [b]) -> ListT m a -> ListT n bSource