stream-0.1.0.0: Initial project template from stack

Safe HaskellSafe
LanguageHaskell2010

Stream.Core.Internal

Documentation

data Step s o r Source

Constructors

Done r 
Yield s o 
Skip s 

data StreamT o m r Source

Constructors

forall s . StreamT (s -> m (Step s o r)) (forall b. (s -> m b) -> m b)