Files
rust/library
Dylan DPC 5885e6d453 Rollup merge of #97565 - lukas-code:patch-1, r=thomcc
Add doc alias `memset` to `write_bytes`

I were looking for `memset` in rust, but the docs only pointed me to `slice::fill`.

With only the old aliases, one might write code like this, which is incorrect if the memory is uninitialized.
``` Rust
core::slice::from_raw_parts(ptr, len).fill(0)
```
2022-05-31 07:57:36 +02:00
..
2022-05-20 09:30:26 +02:00
2022-05-31 00:41:39 +02:00
2022-05-27 07:36:17 -04:00