Feature gate: #![feature(control_flow_into_value)]
This is a tracking issue for the into_value method on ControlFlow<T, T>: https://doc.rust-lang.org/nightly/std/ops/enum.ControlFlow.html#method.into_value
Public API
// core::ops
impl<T> ControlFlow<T, T> {
// hopefully const one day, but that needs `~const Destruct`
// or precise drop calculations
pub fn into_value(self) -> T;
}
Steps / History
Unresolved Questions
Feature gate:
#![feature(control_flow_into_value)]This is a tracking issue for the
into_valuemethod onControlFlow<T, T>: https://doc.rust-lang.org/nightly/std/ops/enum.ControlFlow.html#method.into_valuePublic API
Steps / History
into_valueforControlFlowlibs-team#474 (comment)Unresolved Questions
Footnotes
https://std-dev-guide.rust-lang.org/feature-lifecycle/stabilization.html ↩