Files
rust/library
Matthias Krüger 388c10b2ac Rollup merge of #131281 - RalfJung:const-cell, r=Amanieu
make Cell unstably const

Now that we can do interior mutability in `const`, most of the Cell API can be `const fn`. :)  The main exception is `set`, because it drops the old value. So from const context one has to use `replace`, which delegates the responsibility for dropping to the caller.

Tracking issue: https://github.com/rust-lang/rust/issues/131283

`as_array_of_cells` is itself still unstable to I added the const-ness to the feature gate for that function and not to `const_cell`, Cc #88248.

r? libs-api
2024-10-05 19:07:54 +02:00
..
2024-08-29 12:13:19 -07:00
2024-07-28 14:46:29 -04:00
2024-10-02 01:27:11 +08:00
2024-09-23 09:21:39 -07:00
2024-09-24 14:25:16 -07:00
2024-09-25 17:03:20 -07:00