Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

  1. Plain :: GraphvizOutput

    graphviz Data.GraphViz.Commands

    Simple text format.

  2. PlainExt :: GraphvizOutput

    graphviz Data.GraphViz.Commands

    As for Plain, but provides port names on head and tail nodes when applicable.

  3. Png :: GraphvizOutput

    graphviz Data.GraphViz.Commands

    Portable Network Graphics format.

  4. Ps :: GraphvizOutput

    graphviz Data.GraphViz.Commands

    PostScript.

  5. Ps2 :: GraphvizOutput

    graphviz Data.GraphViz.Commands

    PostScript for PDF.

  6. module Data.GraphViz.Parsing

    This module defines simple helper functions for use with Text.ParserCombinators.Poly.Lazy. Note that the ParseDot instances for Bool, etc. match those specified for use with Graphviz (e.g. non-zero integers are equivalent to True). You should not be using this module; rather, it is here for informative/documentative reasons. If you want to parse a DotRepr, you should use parseDotGraph rather than its ParseDot instance.

  7. type Parse a = Parser GraphvizState a

    graphviz Data.GraphViz.Parsing

    A ReadS-like type alias.

  8. class ParseDot a

    graphviz Data.GraphViz.Parsing

    No documentation available.

  9. newtype Parser s a

    graphviz Data.GraphViz.Parsing

    This Parser datatype is a specialised parsing monad with error reporting. Whereas the standard version can be used for arbitrary token types, this version is specialised to Text input only.

  10. class (Functor p, Monad p, MonadFail p, Applicative p, Alternative p, Commitment p) => PolyParse (p :: Type -> Type)

    graphviz Data.GraphViz.Parsing

    The PolyParse class is an abstraction gathering all of the common features that a two-level error-handling parser requires: the applicative parsing interface, the monadic interface, and commitment. There are two additional basic combinators that we expect to be implemented afresh for every concrete type, but which (for technical reasons) cannot be class methods. They are next and satisfy.

Page 448 of many | Previous | Next