Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prelude.read: no parse error for numbers with more than 255 decimal places #18

Open
ejserna opened this issue Feb 13, 2018 · 2 comments

Comments

@ejserna
Copy link

ejserna commented Feb 13, 2018

Doing a read of a number with more than 255 decimal places
i.e.

read("12.3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333") :: Decimal

(256 decimal places)

Causes the following error:

*** Exception: Prelude.read: no parse
@ejserna ejserna changed the title Prelude.read: no parse error for very large Decimals Prelude.read: no parse error for numbers with more than 255 decimal places Feb 13, 2018
@PaulJohnson
Copy link
Owner

Decimal uses a Word8 (i.e. 8 bits) to store the exponent, so this is the Right Thing.
A note in the documentation might be a good idea though.

@ejserna
Copy link
Author

ejserna commented Feb 18, 2018

Maybe we could do a function before doing readDecimalP. Something like

get255Decimals :: String  -> String
get255Decimals ('.' : xs) = "." ++ (take 255 xs) 
get255Decimals (x : xs) = [x] ++ (get255Decimals xs)

could do the job.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants