Rollup merge of #129382 - tgross35:once-cell-const-into-inner, r=Noratrieb

Add `const_cell_into_inner` to `OnceCell`

`Cell` and `RefCell` have their `into_inner` methods const unstable. `OnceCell` has the same logic, so add it under the same gate.

Tracking issue: https://github.com/rust-lang/rust/issues/78729
This commit is contained in:
Matthias Krüger
2024-08-22 08:17:22 +02:00
committed by GitHub
+2 -1
View File
@@ -309,7 +309,8 @@ fn try_init<F, E>(&self, f: F) -> Result<&T, E>
/// ```
#[inline]
#[stable(feature = "once_cell", since = "1.70.0")]
pub fn into_inner(self) -> Option<T> {
#[rustc_const_unstable(feature = "const_cell_into_inner", issue = "78729")]
pub const fn into_inner(self) -> Option<T> {
// Because `into_inner` takes `self` by value, the compiler statically verifies
// that it is not currently borrowed. So it is safe to move out `Option<T>`.
self.inner.into_inner()