Hoogle Search

Within LTS Haskell 24.48 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. module Text.Printf

    No documentation available.

  2. type PrintFunc = Text -> IO ()

    gi-glib GI.GLib.Callbacks

    Specifies the type of the print handler functions. These are called with the complete formatted string to output.

  3. module Text.Pretty.Simple.Internal.Printer

    No documentation available.

  4. PrintDefaultDataFile :: Maybe FilePath -> Text -> OptInfo

    pandoc Text.Pandoc.App

    No documentation available.

  5. PrintDefaultTemplate :: Maybe FilePath -> Text -> OptInfo

    pandoc Text.Pandoc.App

    No documentation available.

  6. PrintHighlightStyle :: Maybe FilePath -> Text -> OptInfo

    pandoc Text.Pandoc.App

    No documentation available.

  7. Printable :: ASN1StringEncoding

    asn1-types Data.ASN1.Types

    printable [a-z] [A-Z] [()+,-.?:/=] and space.

  8. Printable :: ASN1StringEncoding

    asn1-types Data.ASN1.Types.String

    printable [a-z] [A-Z] [()+,-.?:/=] and space.

  9. module Data.GraphViz.Printing

    This module defines simple helper functions for use with Text.PrettyPrint. It also re-exports all the pretty-printing combinators from that module. Note that the PrintDot instances for Bool, etc. match those specified for use with Graphviz. You should only be using this module if you are writing custom node types for use with Data.GraphViz.Types. For actual printing of code, use printDotGraph (which produces a Text value). The Dot language specification specifies that any identifier is in one of four forms:

    • Any string of alphabetic ([a-zA-Z\200-\377]) characters, underscores ('_') or digits ([0-9]), not beginning with a digit;
    • a number [-]?(.[0-9]+ | [0-9]+(.[0-9]*)? );
    • any double-quoted string ("...") possibly containing escaped quotes (\");
    • an HTML string (<...>).
    (Note that the first restriction is referring to a byte-by-byte comparison using octal values; when using UTF-8 this corresponds to all characters c where ord c >= 128.) Due to these restrictions, you should only use text when you are sure that the Text in question is static and quotes are definitely needed/unneeded; it is better to use the Text instance for PrintDot. For more information, see the specification page: http://graphviz.org/doc/info/lang.html

  10. class PrintDot a

    graphviz Data.GraphViz.Printing

    A class used to correctly print parts of the Graphviz Dot language. Minimal implementation is unqtDot.

Page 129 of many | Previous | Next