summaryrefslogtreecommitdiff
path: root/Utility/Percentage.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Utility/Percentage.hs')
-rw-r--r--Utility/Percentage.hs14
1 files changed, 5 insertions, 9 deletions
diff --git a/Utility/Percentage.hs b/Utility/Percentage.hs
index 1c6b50062..8d9280148 100644
--- a/Utility/Percentage.hs
+++ b/Utility/Percentage.hs
@@ -13,6 +13,8 @@ module Utility.Percentage (
import Data.Ratio
+import Utility.HumanNumber
+
newtype Percentage = Percentage (Ratio Integer)
instance Show Percentage where
@@ -25,14 +27,8 @@ percentage full have = Percentage $ have * 100 % full
{- Pretty-print a Percentage, with a specified level of precision. -}
showPercentage :: Int -> Percentage -> String
-showPercentage precision (Percentage p)
- | precision == 0 || remainder == 0 = go $ show int
- | otherwise = go $ show int ++ "." ++ strip0s (show remainder)
+showPercentage precision (Percentage p) = v ++ "%"
where
- go v = v ++ "%"
- int :: Integer
- (int, frac) = properFraction (fromRational p)
- remainder = floor (frac * multiplier) :: Integer
+ v = showImprecise precision n
+ n = fromRational p :: Double
strip0s = reverse . dropWhile (== '0') . reverse
- multiplier :: Float
- multiplier = 10 ** (fromIntegral precision)