-
Notifications
You must be signed in to change notification settings - Fork 188
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
Absolute value #266
Comments
I don't think we need anything added to
This seems ok, but the hard part is to find a good name for it. :) If you have ownership, you can use |
Okay, those approaches seem better to me. I especially like the Anyway, assuming the implementation you gave, do you think that |
There is already an |
Ah, how about |
Yeah, |
instead of |
I would like to have a way to make a
BigInt
into its absolute value in place, i.e. taking&mut self
. Seems like a good approach would be to add anabs
method toSign
which is justand then in
BigInt
it would beIf this approach is acceptable I can make a PR.
The text was updated successfully, but these errors were encountered: