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
pow(0, 0) should be undefined. Should probably panic in pow(0, 0), and return None in checked_pow(0, 0).
pow(0, 0)
None
checked_pow(0, 0)
The text was updated successfully, but these errors were encountered:
Tried to fix this, thow could not figure out how to compare the base argument with zero. base edit: Zero implements is_zero()
Sorry, something went wrong.
Documented in #79.
No branches or pull requests
pow(0, 0)
should be undefined. Should probably panic inpow(0, 0)
, and returnNone
inchecked_pow(0, 0)
.The text was updated successfully, but these errors were encountered: