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

Copyright(c) Andy Gill 2001, (c) Oregon Graduate Institute of Science and Technology, 2001
LicenseBSD-style (see the file libraries/base/LICENSE)
Maintainerlibraries@haskell.org
Stabilityexperimental
Portabilitynon-portable (multi-parameter type classes)
Safe HaskellSafe-Inferred
LanguageHaskell98

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 b Source