rust/library
Trevor Gross 5e5f3341e3 Stabilize const_mem_zeroed
Make `core::mem::zeroed` const stable. Newly stable API:

    // core::mem
    pub const unsafe fn zeroed<T>() -> T;

This is stabilized with `const_maybe_uninit_zeroed` since it is a simple
wrapper.

In order to make this possible, intrinsics `assert_zero_valid` was made
const stable under `const_assert_type2`.
`assert_mem_uninitialized_valid` was also made const stable since it is
under the same gate.
2023-11-04 15:27:29 -04:00
..
2023-11-04 15:27:25 -04:00
2023-11-04 15:27:29 -04:00
2023-09-22 17:23:33 +05:30
2023-09-05 19:56:20 +02:00
2023-09-21 17:31:25 +02:00