-
Notifications
You must be signed in to change notification settings - Fork 14k
Open
Labels
C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFCCategory: An issue tracking the progress of sth. like the implementation of an RFCS-tracking-ready-to-stabilizeStatus: This is ready to stabilize; it may need a stabilization report and a PRStatus: This is ready to stabilize; it may need a stabilization report and a PRT-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.Relevant to the library API team, which will review and decide on the PR/issue.
Description
Feature gate: #![feature(min_const_control_flow)]
This is a tracking issue for the minimal constification of ControlFlow methods. Minimal means these methods can be constified without #143874 (see #148739).
Public API
// core::ops::control_flow
impl<B, C> ControlFlow<B, C> {
pub const fn is_break(&self) -> bool;
pub const fn is_continue(&self) -> bool;
pub const fn break_ok(self) -> Result<B, C>;
pub const fn continue_ok(self) -> Result<C, B>;
}Steps / History
(Remember to update the S-tracking-* label when checking boxes.)
- Implementation: Constify
ControlFlowmethods without unstable bounds #148248 - Final comment period (FCP)1
- Stabilization PR
Unresolved Questions
- None yet.
Footnotes
Metadata
Metadata
Assignees
Labels
C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFCCategory: An issue tracking the progress of sth. like the implementation of an RFCS-tracking-ready-to-stabilizeStatus: This is ready to stabilize; it may need a stabilization report and a PRStatus: This is ready to stabilize; it may need a stabilization report and a PRT-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.Relevant to the library API team, which will review and decide on the PR/issue.