-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Float::ldexp should use the same format as everything else #22098
Comments
+1. There are a few different things to consider here, though:
cc @huonw |
Okay, but from a consistency standpoint, it's like 1/80 for |
Nominating for 1.0-beta P-backcompat-libs |
One should be able to call this thing as a method, one way or another. We need to make sure that is resolved. |
1.0 beta, P-backcompat-libs |
I started to fix this. |
std::num::Float::ldexp
has an unusual format: it takesx: Self
as it's first parameter where everything else in the trait takesself
. It should takeself
as it's first parameter for consistency with everything else.It is located in
std::num::mod
The text was updated successfully, but these errors were encountered: