Portability | GHC |
---|---|
Stability | experimental |
Maintainer | chrisdone@gmail.com |
Safe Haskell | None |
Single letters for short formatting.
Documentation
ef :: Real a => Int -> Format aSource
Render a floating point number using scientific/engineering notation (e.g. 2.3e123), with the given number of decimal places.
f :: Real a => Int -> Format aSource
Render a floating point number using normal notation, with the given number of decimal places.
pf :: Real a => Int -> Format aSource
Render a floating point number, with the given number of digits of precision. Uses decimal notation for values between 0.1 and 9,999,999, and scientific notation otherwise.
sf :: Real a => Format aSource
Render a floating point number using the smallest number of digits that correctly represent it.