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? 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
abs_sub
When self > other, self.abs() is returned instead of self - other
self > other
self.abs()
self - other
rust-decimal/src/decimal.rs
Lines 1895 to 1901 in 6f8b0ae
The text was updated successfully, but these errors were encountered:
This is a good catch - fortunately an easy fix will whip up a quick PR.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
When
self > other
,self.abs()
is returned instead ofself - other
rust-decimal/src/decimal.rs
Lines 1895 to 1901 in 6f8b0ae
The text was updated successfully, but these errors were encountered: