Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

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

  1. manyFinally :: PolyParse p => p a -> p z -> p [a]

    graphviz Data.GraphViz.Parsing

    manyFinally e t parses a possibly-empty sequence of e's, terminated by a t. The final t is discarded. Any parse failures could be due either to a badly-formed terminator or a badly-formed element, so it raises both possible errors.

  2. manyFinally' :: (PolyParse p, Show a) => p a -> p z -> p [a]

    graphviz Data.GraphViz.Parsing

    manyFinally' is like manyFinally, except when the terminator parser overlaps with the element parser. In manyFinally e t, the parser t is tried only when parser e fails, whereas in manyFinally' e t, the parser t is always tried first, then parser e only if the terminator is not found. For instance, manyFinally (accept "01") (accept "0") on input "0101010" returns ["01","01","01"], whereas manyFinally' with the same arguments and input returns [].

  3. parseLiberally :: GraphvizState -> GraphvizState

    graphviz Data.GraphViz.Parsing

    No documentation available.

  4. parseDotGraphLiberally :: ParseDotRepr dg n => Text -> dg n

    graphviz Data.GraphViz.Types

    As with parseDotGraph, but if an Attribute cannot be parsed strictly according to the known rules, let it fall back to being parsed as an UnknownAttribute. This is especially useful for when using a version of Graphviz that is either newer (especially for the XDot attributes) or older (when some attributes have changed) but you'd still prefer it to parse rather than throwing an error.

  5. deleteAllEdges :: Ord n => n -> n -> DotGraph n -> DotGraph n

    graphviz Data.GraphViz.Types.Graph

    Delete all edges between the two nodes; returns the original graph if there are no edges.

  6. NormallyNegative :: NormalSign

    hledger-lib Hledger.Data

    No documentation available.

  7. NormallyPositive :: NormalSign

    hledger-lib Hledger.Data

    No documentation available.

  8. PeriodAll :: Period

    hledger-lib Hledger.Data

    No documentation available.

  9. journalLastDay :: Bool -> Journal -> Maybe Day

    hledger-lib Hledger.Data.Journal

    The latest of this journal's transaction and posting dates, or Nothing if there are none.

  10. journalLeafAccountNames :: Journal -> [AccountName]

    hledger-lib Hledger.Data.Journal

    Sorted unique account names declared or implied in this journal which have no children.

Page 531 of many | Previous | Next