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.

  1. class ParseDebianVersion a

    debian Debian.Version.String

    No documentation available.

  2. class ParseDebianVersion a

    debian Debian.Version.Text

    No documentation available.

  3. Padding :: Int -> Filling

    derive-storable Foreign.Storable.Generic.Tools

    No documentation available.

  4. data Path

    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.

  5. 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 token
    renderDia' 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).

  6. data Postscript

    diagrams-postscript Diagrams.Backend.Postscript

    This data declaration is simply used as a token to distinguish this rendering engine.

  7. Postscript :: Postscript

    diagrams-postscript Diagrams.Backend.Postscript

    No documentation available.

  8. data Postscript

    diagrams-postscript Diagrams.Backend.Postscript.CmdLine

    This data declaration is simply used as a token to distinguish this rendering engine.

  9. 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

  10. newtype PSWriter m

    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.

Page 826 of many | Previous | Next