diff options
| author | Dylan DPC <99973273+Dylan-DPC@users.noreply.github.com> | 2022-03-31 04:57:27 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-31 04:57:27 +0200 |
| commit | c90a94707f19c69a9ef5cecb016e08f771e5b294 (patch) | |
| tree | f0c1d1dd4c920aefbcfca097a03c7e8ec468639e /library/alloc/src/vec | |
| parent | 64a3767fee24bfca0534edf596d96659dee68b29 (diff) | |
| parent | 796f38519093ebb67ff1bd5f4f72e76d8ba8aeb8 (diff) | |
| download | rust-c90a94707f19c69a9ef5cecb016e08f771e5b294.tar.gz rust-c90a94707f19c69a9ef5cecb016e08f771e5b294.zip | |
Rollup merge of #95491 - faern:stabilize-vec_retain_mut, r=yaahc
Stabilize feature vec_retain_mut on Vec and VecDeque Closes #90829
Diffstat (limited to 'library/alloc/src/vec')
| -rw-r--r-- | library/alloc/src/vec/mod.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/library/alloc/src/vec/mod.rs b/library/alloc/src/vec/mod.rs index 9773ec02337..0b62622de81 100644 --- a/library/alloc/src/vec/mod.rs +++ b/library/alloc/src/vec/mod.rs @@ -1467,8 +1467,6 @@ impl<T, A: Allocator> Vec<T, A> { /// # Examples /// /// ``` - /// #![feature(vec_retain_mut)] - /// /// let mut vec = vec![1, 2, 3, 4]; /// vec.retain_mut(|x| if *x > 3 { /// false @@ -1478,7 +1476,7 @@ impl<T, A: Allocator> Vec<T, A> { /// }); /// assert_eq!(vec, [2, 3, 4]); /// ``` - #[unstable(feature = "vec_retain_mut", issue = "90829")] + #[stable(feature = "vec_retain_mut", since = "1.61.0")] pub fn retain_mut<F>(&mut self, mut f: F) where F: FnMut(&mut T) -> bool, |
