comonad-transformers-0.4.1: Haskell 98 comonad transformers

Portabilityportable
Stabilityprovisional
MaintainerEdward Kmett <ekmett@gmail.com>

Control.Comonad.Trans.Stream

Contents

Description

The f-branching stream comonad, aka the cofree comonad for a Functor f.

Provided here as a comonad-transformer version of the 'ListT done right' monad transformer.

Synopsis

The Stream comonad

type Stream f = StreamT f IdentitySource

Isomorphic to the definition:

 data Stream f a = a :< f (Stream f a)

stream :: a -> f (Stream f a) -> Stream f aSource

cons onto an f-branching stream

runStream :: Stream f a -> (a, f (Stream f a))Source

uncons from an f-branching stream

unfolds :: Functor f => (a -> (b, f a)) -> a -> Stream f bSource

unfold a stream from a seed.

The Stream comonad transformer

data StreamT f w a Source

The f-branching stream comonad transformer is a comonadic version of the "ListT done Right" monad transformer. You can extract the underlying comonadic value by using lower or runStream

Constructors

StreamT 

Fields

runStreamT :: w (a, f (StreamT f w a))
 

Operations

tails :: Comonad w => StreamT f w a -> f (StreamT f w a)Source

unfoldsW :: (Comonad w, Functor f) => (w a -> (b, f a)) -> w a -> StreamT f w bSource