Read (Ratio a) should also parse a decimal point literal

5 Feb
2020
5 Feb
'20
10:44 p.m.
Given a string representing a decimal point literal (ex. "0.25"), the number it represents is guaranteed to be rational. It seems appropriate for Ratio to parse such strings. readDecimalRatio :: (Integral a, Read a) => ReadPrec (Ratio a) readDecimalRatio = parens $ do Number x <- lexP return (numberToRational x) Combine this by (+++) with the original `readPrec` from the instance Read Ratio.
2046
Age (days ago)
2046
Last active (days ago)
0 comments
1 participants
participants (1)
-
Dannyu NDos