-
Notifications
You must be signed in to change notification settings - Fork 43
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
BigDecimal.parseString("") returns ZERO instead of throwing #253
Comments
Thanks for reporting! |
This might be correct in a mathematcical sense, but it totally ignores the reality of parsing! It is very common in the context of data handling to omit Imho you should respect Postel's law here. Again: It is about parsing, not serialization! At least this should be marked as an serious behaviour chaning issue. |
Some of the reasoning is correct, but it's applied at incorrect place. If your domain requires handling of empty strings as zeroes, you need to apply your custom logic, e.g. replace empty input with zero, before you get to this method. Zero is not special here. It is equally incorrect to return zero from an empty string as it would be to return |
You are right: Zero is not special in the domain of parsing ;-) So I consider this to be a part of the convenient user API of this lib. Let's commit, that we have different opinions of this topic. Then let us just step aside from wrong or right and try to focus on the API of a library and the constraints and responsabilities it has: Imho as a maintainer you are resonsible to keep the API (including behaviour!) as stable as you can. This was a huge change and imho it would have been better to balance pros and cons more carefully. The consequence of your observation is: Someone who needs to be aware of empty strings would have to encode special code before calling this function. Now the other way round is needed - as I proclaim: The waste majority would have to change this now! Let us recap other alternatives:
To be fair: Obviously noone besides me cared about this change, even though it is much more severe than the fixing procedure would unveil ;-) |
Hello @Lysander, Thank you for your opinion on this topic, while I disagree with you on most points, I can understand that it can be irritating when something that was working suddenly breaks. Unfortunately in this case I agree completely with @okarmazin, the solution should be applied at the domain level. Once again, thanks for the opinions! |
Thanks for the overall excellent library ;-) No problem - let's embrace different opinions discussed without harm or even violence. There is inherent value in this - especially nowadays :-) |
Empty string is not a valid representation of a decimal number and should not be accepted.
https://github.com/ionspin/kotlin-multiplatform-bignum/blob/main/bignum/src/commonMain/kotlin/com/ionspin/kotlin/bignum/decimal/BigDecimal.kt#L899..L901
The text was updated successfully, but these errors were encountered: