Hoogle Search
Within Stackage Nightly 2025-10-08 (ghc-9.12.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
controllerSetRedraw :: Controller -> IO ()gloss Graphics.Gloss.Data.Controller Indicate that we want the picture to be redrawn.
-
hledger-lib Hledger.Data No documentation available.
jparsetimeclockentries :: Journal -> [TimeclockEntry]hledger-lib Hledger.Data timeclock sessions which have not been clocked out
accountSetDeclarationInfo :: Journal -> Account a -> Account ahledger-lib Hledger.Data.Account Add extra info for this account derived from the Journal's account directives, if any (comment, tags, declaration order..).
-
hledger-lib Hledger.Data.AccountName Regular expressions matching common English top-level account names, used as a fallback when account types are not declared.
amountSetFullPrecision :: Amount -> Amounthledger-lib Hledger.Data.Amount Increase an amount's display precision, if needed, to enough decimal places to show it exactly (showing all significant decimal digits, without trailing zeros). If the amount's display precision is unset, it will be treated as precision 0.
amountSetFullPrecisionUpTo :: Maybe Word8 -> Amount -> Amounthledger-lib Hledger.Data.Amount We often want to display "infinite decimal" amounts rounded to some readable number of digits, while still displaying amounts with a large but "non infinite" number of decimal digits (eg 10 or 100 or 200 digits) in full. This helper is like amountSetFullPrecision, but with some refinements:
- A maximum display precision can be specified, setting a hard upper limit.
- If no limit is specified, and the internal precision is the maximum (255), indicating an infinite decimal, display precision is set to a smaller default (8).
amountSetPrecision :: AmountPrecision -> Amount -> Amounthledger-lib Hledger.Data.Amount Set an amount's display precision.
amountSetPrecisionMax :: Word8 -> Amount -> Amounthledger-lib Hledger.Data.Amount Ensure an amount's display precision is at most the given maximum precision. Always sets an explicit Precision.
amountSetPrecisionMin :: Word8 -> Amount -> Amounthledger-lib Hledger.Data.Amount Ensure an amount's display precision is at least the given minimum precision. Always sets an explicit Precision.