Hoogle Search
Within LTS Haskell 24.39 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
type
Producer b = Proxy X () () bpipes Pipes.Core type
Producer' b (m :: Type -> Type) r = forall x' x . () => Proxy x' x () b m rpipes Pipes.Core Like Producer, but with a polymorphic type
data
Proxy a' a b' b (m :: Type -> Type) rpipes Pipes.Core A Proxy is a monad transformer that receives and sends information on both an upstream and downstream interface. The type variables signify:
- a' and a - The upstream interface, where (a')s go out and (a)s come in
- b' and b - The downstream interface, where (b)s go out and (b')s come in
- m - The base monad
- r - The return value
data
Proxy a' a b' b (m :: Type -> Type) rpipes Pipes.Internal A Proxy is a monad transformer that receives and sends information on both an upstream and downstream interface. The type variables signify:
- a' and a - The upstream interface, where (a')s go out and (a)s come in
- b' and b - The downstream interface, where (b)s go out and (b')s come in
- m - The base monad
- r - The return value
Pure :: r -> Proxy a' a b' b (m :: Type -> Type) rpipes Pipes.Internal No documentation available.
-
General purpose utilities The names in this module clash heavily with the Haskell Prelude, so I recommend the following import scheme:
import Pipes import qualified Pipes.Prelude as P -- or use any other qualifier you prefer
Note that String-based IO is inefficient. The String-based utilities in this module exist only for simple demonstrations without incurring a dependency on the text package. Also, stdinLn and stdoutLn remove and add newlines, respectively. This behavior is intended to simplify examples. The corresponding stdin and stdout utilities from pipes-bytestring and pipes-text preserve newlines. Parent :: StaticString -> StaticString -> StaticString -> MarkupM a -> MarkupM ablaze-markup Text.Blaze.Internal Tag, open tag, end tag, content
PreEscaped :: ChoiceString -> ChoiceStringblaze-markup Text.Blaze.Internal A pre-escaped string
module Text.Blaze.Renderer.
Pretty A renderer that produces pretty HTML, mostly meant for debugging purposes.
-
cmdargs System.Console.CmdArgs.GetOpt No documentation available.