You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes I want to round values not to a decimal position after the comma but before the comma. This is currently not possible with the round function.
Description
Sometimes I want to round values not to a decimal position after the comma but before the comma. This is currently not possible with the round function.
This currently results in the following error:
OverflowError: can't convert negative int to unsigned
What I would expect is something like:
| number | rounded |
| --- |--- │
| f32 | f32 |
| | |
| 12.0 | 10.0 │
| 15.0 | 16.0 │
| 13.6 | 10.0 │
| 13.69 | 10.0 │
| 13.98456 | 10.0 │
The text was updated successfully, but these errors were encountered: