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
Integer
@Marcono1234 left some good suggestions on #98 that should be addressed:
From
checked_abs
Option
Some
checked_*
mut self
&self
The text was updated successfully, but these errors were encountered:
refactor: updates to Integer API
dec04e9
See #101
61508ed
f333e82
refactor: updates to Integer API (#102)
3b096de
Successfully merging a pull request may close this issue.
@Marcono1234 left some good suggestions on #98 that should be addressed:
From
implementations (feat: implement integer type to comply with spec #98 (comment))checked_abs
does not need to return anOption
, it will always beSome
(feat: implement integer type to comply with spec #98 (comment))checked_*
functions that takemut self
is a bit odd, it may be better to take&self
to avoid confusion and potential foot guns.The text was updated successfully, but these errors were encountered: