diff options
| author | tinaun <tinagma@gmail.com> | 2018-04-17 00:40:07 -0400 |
|---|---|---|
| committer | tinaun <tinagma@gmail.com> | 2018-04-17 00:49:24 -0400 |
| commit | 78a8c257032b18b5ca63f41b18d2fe7d57d1cffa (patch) | |
| tree | 7903bfaffb093a9760c1da6907f2f44297fd7eb3 /src/libcore/slice | |
| parent | 41c211d2043df20b2ff5c9a13f8c7d711f74c13a (diff) | |
| download | rust-78a8c257032b18b5ca63f41b18d2fe7d57d1cffa.tar.gz rust-78a8c257032b18b5ca63f41b18d2fe7d57d1cffa.zip | |
stabilize `swap_with_slice` feature
Diffstat (limited to 'src/libcore/slice')
| -rw-r--r-- | src/libcore/slice/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/slice/mod.rs b/src/libcore/slice/mod.rs index 68f081c2e87..afb149f2997 100644 --- a/src/libcore/slice/mod.rs +++ b/src/libcore/slice/mod.rs @@ -223,7 +223,7 @@ pub trait SliceExt { #[stable(feature = "copy_from_slice", since = "1.9.0")] fn copy_from_slice(&mut self, src: &[Self::Item]) where Self::Item: Copy; - #[unstable(feature = "swap_with_slice", issue = "44030")] + #[stable(feature = "swap_with_slice", since = "1.27.0")] fn swap_with_slice(&mut self, src: &mut [Self::Item]); #[stable(feature = "sort_unstable", since = "1.20.0")] |
