1
Fork 0

Rollup merge of #130476 - workingjubilee:more-lazy-methods-take-2, r=Amanieu

Implement ACP 429: add `Lazy{Cell,Lock}::get[_mut]` and `force_mut`

Tracking issue for `lazy_get`: https://github.com/rust-lang/rust/issues/129333
This commit is contained in:
Jubilee 2024-09-18 14:32:26 -07:00 committed by GitHub
commit 12b59e52bc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 312 additions and 11 deletions

View file

@ -76,6 +76,7 @@
#![feature(iterator_try_collect)]
#![feature(iterator_try_reduce)]
#![feature(layout_for_ptr)]
#![feature(lazy_get)]
#![feature(maybe_uninit_fill)]
#![feature(maybe_uninit_uninit_array_transpose)]
#![feature(maybe_uninit_write_slice)]