Hoogle Search
Within LTS Haskell 24.42 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
debian Debian.Version.String No documentation available.
-
debian Debian.Version.Text No documentation available.
-
derive-storable Foreign.Storable.Generic.Tools No documentation available.
-
di-df1 Di.Df1 Path represents the hierarchical structure of logged messages. For example, consider a df1 log line as like the following:
1999-12-20T07:11:39.230553031Z /foo x=a y=b /bar /qux z=c z=d WARNING Something
For that line, the log_path attribute of the Log datatype will contain the following:[ Push (segment "foo") , Attr (key "x") (value "a") , Attr (key "y") (value "b") , Push (segment "bar") , Push (segment "qux") , Attr (key "z") (value "c") , Attr (key "z") (value "d") ] :: Seq Path
Please notice that [] :: Seq Path is a valid path insofar as df1 is concerned, and that Attr and Push can be juxtapositioned in any order. module Diagrams.Backend.
Postscript A Postscript rendering backend for diagrams. To build diagrams for Postscript rendering use the Postscript type in the diagram type construction
d :: Diagram Postscript d = square 10
and render giving the Postscript tokenrenderDia' d (PostscriptOptions "file.eps" (mkWidth 400) EPS)
This IO action will write the specified file. If you prefer to generate an in-memory ByteString, use renderDia. Check Diagrams.Backend.Postscript.CmdLine for the command-line interface documentation (a great way to start using this package).-
diagrams-postscript Diagrams.Backend.Postscript This data declaration is simply used as a token to distinguish this rendering engine.
-
diagrams-postscript Diagrams.Backend.Postscript No documentation available.
-
diagrams-postscript Diagrams.Backend.Postscript.CmdLine This data declaration is simply used as a token to distinguish this rendering engine.
module Graphics.Rendering.
Postscript Generic tools for generating Postscript files. There is some limited support for tracking the state of the renderer when given a side-effecting (in the Postscript) command. Only drawing operations are supported, not general Postscript language generation. In the future the tracking of rendering state could lead to optimizing output, but for now little optimization is attempted. Most systems are equiped with tools to optimize Postscript such as eps2eps. For details on the PostScript language see the PostScript(R) Language Reference: http://www.adobe.com/products/postscript/pdfs/PLRM.pdf
-
diagrams-postscript Graphics.Rendering.Postscript Type for a monad that writes Postscript using the commands we will define later. Type for a monad that writes Postscript using the commands we will define later.