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.
formatParagraph :: Paragraph' Text -> Textdebian Debian.Control No documentation available.
formatTimeRFC822 :: FormatTime t => t -> Stringdebian Debian.Time No documentation available.
forbrugsforeningen :: Fake Textfakedata Faker.Finance No documentation available.
-
fakedata Faker.PhoneNumber No documentation available.
-
fakedata Faker.Quote No documentation available.
-
fakedata Faker.Sport.Volleyball No documentation available.
-
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
format :: FormatStyle -> Maybe Int -> Double -> Textformatn Data.FormatN format a number according to a FormatStyle and significant figures
>>> format CommaStyle (Just 2) 1234 "1,200"
formatN :: FormatN -> Double -> Textformatn Data.FormatN run a FormatN
>>> formatN defaultFormatN 1234 "1,200"
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"]