-
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
Stabilize ControlFlow::{is_break, is_continue}
#91091
Conversation
r? @dtolnay (rust-highfive has picked a reviewer for you, use r? to override) |
Random extremely minor comment: |
Team member @dtolnay has proposed to merge this. The next step is review by the rest of the tagged team members: No concerns currently listed. Once a majority of reviewers approve (and at most 2 approvals are outstanding), this will enter its final comment period. If you spot a major issue that hasn't been raised at any point in this process, please speak up! See this document for info about what commands tagged team members can give me. |
🔔 This is now entering its final comment period, as per the review above. 🔔 |
The final comment period, with a disposition to merge, as per the review above, is now complete. As the automated representative of the governance process, I would like to thank the author for their work and everyone else who contributed. This will be merged soon. |
@bors r+ |
📌 Commit 7ba4acc has been approved by |
@bors rollup |
…askrgr Rollup of 5 pull requests Successful merges: - rust-lang#91086 (Implement `TryFrom<&'_ mut [T]>` for `[T; N]`) - rust-lang#91091 (Stabilize `ControlFlow::{is_break, is_continue}`) - rust-lang#91749 (BTree: improve public descriptions and comments) - rust-lang#91819 (rustbot: Add autolabeling for `T-compiler`) - rust-lang#91824 (Make `(*mut T)::write_bytes` `const`) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
…lan-DPC remove feature gate in control_flow examples Stabilization was done in rust-lang#91091, but the two examples weren't updated accordingly. Probably too late to put it into stable, but it should be in the next release :)
The type itself was stabilized in 1.55, but using it is not ergonomic without these helper functions. Stabilize them.
r? rust-lang/libs-api