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.
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.
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 [].
parseLiberally :: GraphvizState -> GraphvizStategraphviz Data.GraphViz.Parsing No documentation available.
parseDotGraphLiberally :: ParseDotRepr dg n => Text -> dg ngraphviz 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.
deleteAllEdges :: Ord n => n -> n -> DotGraph n -> DotGraph ngraphviz Data.GraphViz.Types.Graph Delete all edges between the two nodes; returns the original graph if there are no edges.
NormallyNegative :: NormalSignhledger-lib Hledger.Data No documentation available.
NormallyPositive :: NormalSignhledger-lib Hledger.Data No documentation available.
-
hledger-lib Hledger.Data No documentation available.
journalLastDay :: Bool -> Journal -> Maybe Dayhledger-lib Hledger.Data.Journal The latest of this journal's transaction and posting dates, or Nothing if there are none.
journalLeafAccountNames :: Journal -> [AccountName]hledger-lib Hledger.Data.Journal Sorted unique account names declared or implied in this journal which have no children.