diff options
Diffstat (limited to 'libraries/base/Numeric.hs')
-rw-r--r-- | libraries/base/Numeric.hs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libraries/base/Numeric.hs b/libraries/base/Numeric.hs index 88b2e1a063..4a1a5b121a 100644 --- a/libraries/base/Numeric.hs +++ b/libraries/base/Numeric.hs @@ -187,6 +187,8 @@ showGFloat d x = showString (formatRealFloat FFGeneric d x) -- -- This behaves as 'showFFloat', except that a decimal point -- is always guaranteed, even if not needed. +-- +-- /Since: 4.7.0.0/ showFFloatAlt :: (RealFloat a) => Maybe Int -> a -> ShowS -- | Show a signed 'RealFloat' value @@ -195,6 +197,8 @@ showFFloatAlt :: (RealFloat a) => Maybe Int -> a -> ShowS -- -- This behaves as 'showFFloat', except that a decimal point -- is always guaranteed, even if not needed. +-- +-- /Since: 4.7.0.0/ showGFloatAlt :: (RealFloat a) => Maybe Int -> a -> ShowS showFFloatAlt d x = showString (formatRealFloatAlt FFFixed d True x) |