Hoogle Search

Within LTS Haskell 24.48 (ghc-9.10.3)

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

  1. formatParagraph :: Paragraph' Text -> Text

    debian Debian.Control

    No documentation available.

  2. formatTimeRFC822 :: FormatTime t => t -> String

    debian Debian.Time

    No documentation available.

  3. forbrugsforeningen :: Fake Text

    fakedata Faker.Finance

    No documentation available.

  4. formats :: Fake Text

    fakedata Faker.PhoneNumber

    No documentation available.

  5. fortuneCookie :: Fake Text

    fakedata Faker.Quote

    No documentation available.

  6. formation :: Fake Text

    fakedata Faker.Sport.Volleyball

    No documentation available.

  7. package formatn

    Formatting of doubles. This package provides support for number formatting styles, especially styles involving significant figure calculations.

    Usage

    >>> import Data.FormatN
    
    >>> comma (Just 3) 1234
    1,230
    

  8. format :: FormatStyle -> Maybe Int -> Double -> Text

    formatn Data.FormatN

    format a number according to a FormatStyle and significant figures

    >>> format CommaStyle (Just 2) 1234
    "1,200"
    

  9. formatN :: FormatN -> Double -> Text

    formatn Data.FormatN

    run a FormatN

    >>> formatN defaultFormatN 1234
    "1,200"
    

  10. formatNs :: FormatN -> [Double] -> [Text]

    formatn Data.FormatN

    Consistently format a list of numbers via using distinguish.

    >>> formatNs defaultFormatN [0,1,1.01,1.02,1.1,1.2]
    ["0.00","1.00","1.01","1.02","1.10","1.20"]
    

Page 138 of many | Previous | Next