Rollup merge of #79213 - yoshuawuyts:stabilize-slice-fill, r=m-ou-se
Stabilize `core::slice::fill` Tracking issue https://github.com/rust-lang/rust/issues/70758 Stabilizes the `core::slice::fill` API in Rust 1.50, adding a `memset` doc alias so people coming from C/C++ looking for this operation can find it in the docs. This API hasn't seen any changes since we changed the signature in https://github.com/rust-lang/rust/pull/71165/, and it seems like the right time to propose stabilization. Thanks! r? `@m-ou-se`
This commit is contained in:
commit
21d36e0daf
@ -2581,14 +2581,12 @@ pub fn rotate_right(&mut self, k: usize) {
|
||||
/// # Examples
|
||||
///
|
||||
/// ```
|
||||
/// #![feature(slice_fill)]
|
||||
///
|
||||
/// let mut buf = vec![0; 10];
|
||||
/// buf.fill(1);
|
||||
/// assert_eq!(buf, vec![1; 10]);
|
||||
/// ```
|
||||
#[doc(alias = "memset")]
|
||||
#[unstable(feature = "slice_fill", issue = "70758")]
|
||||
#[stable(feature = "slice_fill", since = "1.50.0")]
|
||||
pub fn fill(&mut self, value: T)
|
||||
where
|
||||
T: Clone,
|
||||
|
@ -304,7 +304,6 @@
|
||||
#![feature(rustc_private)]
|
||||
#![feature(shrink_to)]
|
||||
#![feature(slice_concat_ext)]
|
||||
#![feature(slice_fill)]
|
||||
#![feature(slice_internals)]
|
||||
#![feature(slice_ptr_get)]
|
||||
#![feature(slice_ptr_len)]
|
||||
|
Loading…
Reference in New Issue
Block a user