-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Lower/UpperExp inconsistent between integers and floats #89493
Comments
For the floating-point portion of this, I think the default is "round to nearest even", which would make 2e1 the correct rounding. It seems odd that integers and floating-point values have different rounding here. |
|
…lett Fix Lower/UpperExp formatting for integers and precision zero Fixes the integer part of rust-lang#89493 (I daren't touch the floating-point formatting code). The issue is that the "subtracted" precision essentially behaves like extra trailing zeros, but this is not currently reflected in the code properly.
…lett Fix Lower/UpperExp formatting for integers and precision zero Fixes the integer part of rust-lang#89493 (I daren't touch the floating-point formatting code). The issue is that the "subtracted" precision essentially behaves like extra trailing zeros, but this is not currently reflected in the code properly.
I can no longer reproduce this on the latest nightly (1.77, 2024-01-22 d5fd099), I get:
Interestingly, stable (1.75) produces the following which still contains the rounding error:
Closing as completed. Please ping me if I should reopen this issue. |
I tried this code:
I expected to see this happen:
The output should be the same regardless if I'm formatting an integer or a float, in this case most likely
3e1
.Instead, this happened:
Happens in both latest stable and nightly.
EDIT: I'm suspecting this is actually two separate bugs in both the integer and float implementation - the integer result contains a
.
which should not be there, and the float gets rounded down to2
despite25.1
rounding to3e1
- which is the result I would expect for25.0
as well.The text was updated successfully, but these errors were encountered: