conduit-1.3.4.3: Streaming data processing library.
Safe Haskell Trustworthy
Language Haskell2010

Data.Conduit.Internal.Fusion

Synopsis

Types

data Step s o r Source #

This is the same as stream fusion's Step. Constructors are renamed to avoid confusion with conduit names.

Constructors

Emit s o
Skip s
Stop r

Instances

Instances details
Functor ( Step s o) Source #
Instance details

Defined in Data.Conduit.Internal.Fusion

Methods

fmap :: (a -> b) -> Step s o a -> Step s o b Source #

(<$) :: a -> Step s o b -> Step s o a Source #

data Stream m o r Source #

Constructors

forall s. Stream (s -> m ( Step s o r)) (m s)

Functions