We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
In REPL:
:module Data.String the (Maybe Int) (parseInteger "1111111111111111111111111")
parseInteger should return Nothing if the input can't be represented as an Int.
parseInteger
Nothing
Int
It returns incorrect value: Just 8375319363688624583.
Just 8375319363688624583
Same issue with parsePositive.
parsePositive
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Steps to Reproduce
In REPL:
Expected Behavior
parseInteger
should returnNothing
if the input can't be represented as anInt
.Observed Behavior
It returns incorrect value:
Just 8375319363688624583
.Same issue with
parsePositive
.The text was updated successfully, but these errors were encountered: