Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
Reexports of most definitions from "mtl" and "transformers". For details check out the source.
module Streamly.Data.Fold.
Prelude All Fold related combinators including the streamly-core Streamly.Data.Fold module, concurrency, unordered container operations.
module Streamly.Data.Stream.
Prelude For upgrading to streamly-0.9.0+ please read the Streamly-0.9.0 upgrade guide. Also, see the Streamly.Data.Stream.MkType module for direct replacement of stream types that have been removed in 0.9.0. All Stream related combinators including the streamly-core Streamly.Data.Stream module, concurrency, time and lifted exception operations. For more pre-release operations also see Streamly.Internal.Data.Stream.Prelude module.
module Streamly.Internal.Data.Fold.
Prelude No documentation available.
module Streamly.Internal.Data.Stream.
Prelude No documentation available.
module Streamly.Internal.Data.Unfold.
Prelude No documentation available.
-
Deprecated: Please use Streamly.Data.Stream.Prelude from streamly package and Streamly.Data.Fold from streamly-core package instead.
module Yesod.Auth.OAuth2.
Prelude Modules and support functions required by most or all provider implementations. May also be useful for writing local providers.
module Yesod.Paginator.
Prelude No documentation available.
-
Reimplementation of the pipes prelude (Pipes.Prelude) in Bluefin. It primarily serves as an example of what you can do with Bluefin and you probably won't want to use it directly. Instead you are recommended to use
- Stream, yield
- Consume, await
- consumeStream
- For advanced cases only, Coroutine, yieldCoroutine and connectCoroutines
>>> runEff_ $ \io -> runEffect $ do stdinLn io >-> takeWhile' (/= "quit") >-> stdoutLn io Test Test ABC ABC quit "quit"