Closed
Description
Feature gate: #![feature(const_unsafecell_get_mut)]
This is a tracking issue for UnsafeCell::get_mut
as a const fn.
Public API
// core::cell
impl<T> UnsafeCell<T> {
pub const fn get_mut(&mut self) -> &mut T;
}
Steps / History
- Implementation: Make
UnsafeCell::get_mut
const #88722 - Final comment period (FCP)
- Stabilization PR
Unresolved Questions
- None yet.