arrow-list-0.6.1: List arrows for Haskell.

Safe HaskellSafe-Inferred

Control.Monad.Sequence

Contents

Synopsis

The Sequence monad transformer.

newtype SeqT m a Source

Parameterizable Sequence monad, with an inner monad. The semantics of SeqT are comparable to that of ListT.

Note: Like the ListT monad, this does not yield a monad unless the argument monad is commutative.

Constructors

SeqT 

Fields

runSeqT :: m (Seq a)
 

Instances