-
Notifications
You must be signed in to change notification settings - Fork 13k
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
Stabilize min_const_fn
#54835
The head ref may contain hidden characters: "m\u00F6gen_konstante_funktionen_doch_bitte_endlich_stabil_sein"
Stabilize min_const_fn
#54835
Conversation
This comment has been minimized.
This comment has been minimized.
cfc51f0
to
ec74d35
Compare
This comment has been minimized.
This comment has been minimized.
You constantly surprise me, Oli: TIL git(hub) apparently works well with unicode branch names. |
Extra points for a great branch name =P /me considers branch names in Swedish now |
Oh wait @bors r=Centril 😈 |
📌 Commit fb04e26 has been approved by |
🙏 |
☀️ Test successful - status-appveyor, status-travis |
const_fn is stable since Rust 1.31 (rust-lang/rust#54835) and enables calling `Scalar::from_bits(..)` from other const fn contexts, potentially saving some overhead here and there. Especially useful in contexts where constants are being built from a bit pattern.
const_fn is stable since Rust 1.31 (rust-lang/rust#54835) and enables calling `Scalar::from_bits(..)` from other const fn contexts, potentially saving some overhead here and there. Especially useful in contexts where constants are being built from a bit pattern.
tracking issue: #53555
r? @Centril