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. showAccounts :: Account -> String

    hledger-lib Hledger.Data.Account

    No documentation available.

  2. showAccountsBoringFlag :: Account -> String

    hledger-lib Hledger.Data.Account

    No documentation available.

  3. showAmount :: Amount -> String

    hledger-lib Hledger.Data.Amount

    Render an amount using its display style and the default amount format. Zero-equivalent amounts are shown as just "0". The special "missing" amount is shown as the empty string.

  4. showAmountB :: AmountFormat -> Amount -> WideBuilder

    hledger-lib Hledger.Data.Amount

    Render an amount using its display style and the given amount format, as a builder for efficiency. (This can be converted to a Text with wbToText or to a String with wbUnpack). The special "missing" amount is displayed as the empty string.

  5. showAmountCost :: Amount -> String

    hledger-lib Hledger.Data.Amount

    No documentation available.

  6. showAmountCostB :: AmountFormat -> Amount -> WideBuilder

    hledger-lib Hledger.Data.Amount

    No documentation available.

  7. showAmountDebug :: Amount -> String

    hledger-lib Hledger.Data.Amount

    Get a string representation of an amount for debugging, appropriate to the current debug level. 9 shows maximum detail.

  8. showAmountWith :: AmountFormat -> Amount -> String

    hledger-lib Hledger.Data.Amount

    Like showAmount but uses the given amount format.

  9. showAmountWithZeroCommodity :: Amount -> String

    hledger-lib Hledger.Data.Amount

    Like showAmount, but show a zero amount's commodity if it has one.

    showAmountWithZeroCommodity = wbUnpack . showAmountB defaultFmt{displayZeryCommodity=True}
    

  10. showAmountWithoutCost :: Amount -> String

    hledger-lib Hledger.Data.Amount

    Get the string representation of an amount, without any @ cost.

    showAmountWithoutCost = wbUnpack . showAmountB noCostFmt
    

Page 102 of many | Previous | Next