@@ -1303,8 +1303,8 @@ impl<T> [T] {
13031303 /// // let chunks: &[[_; 5]] = slice.as_chunks_unchecked() // The slice length is not a multiple of 5
13041304 /// // let chunks: &[[_; 0]] = slice.as_chunks_unchecked() // Zero-length chunks are never allowed
13051305 /// ```
1306- #[ stable( feature = "slice_as_chunks" , since = "CURRENT_RUSTC_VERSION " ) ]
1307- #[ rustc_const_stable( feature = "slice_as_chunks" , since = "CURRENT_RUSTC_VERSION " ) ]
1306+ #[ stable( feature = "slice_as_chunks" , since = "1.88.0 " ) ]
1307+ #[ rustc_const_stable( feature = "slice_as_chunks" , since = "1.88.0 " ) ]
13081308 #[ inline]
13091309 #[ must_use]
13101310 pub const unsafe fn as_chunks_unchecked < const N : usize > ( & self ) -> & [ [ T ; N ] ] {
@@ -1360,8 +1360,8 @@ impl<T> [T] {
13601360 /// };
13611361 /// assert_eq!(chunks, &[['R', 'u'], ['s', 't']]);
13621362 /// ```
1363- #[ stable( feature = "slice_as_chunks" , since = "CURRENT_RUSTC_VERSION " ) ]
1364- #[ rustc_const_stable( feature = "slice_as_chunks" , since = "CURRENT_RUSTC_VERSION " ) ]
1363+ #[ stable( feature = "slice_as_chunks" , since = "1.88.0 " ) ]
1364+ #[ rustc_const_stable( feature = "slice_as_chunks" , since = "1.88.0 " ) ]
13651365 #[ inline]
13661366 #[ track_caller]
13671367 #[ must_use]
@@ -1407,8 +1407,8 @@ impl<T> [T] {
14071407 /// assert_eq!(remainder, &['l']);
14081408 /// assert_eq!(chunks, &[['o', 'r'], ['e', 'm']]);
14091409 /// ```
1410- #[ stable( feature = "slice_as_chunks" , since = "CURRENT_RUSTC_VERSION " ) ]
1411- #[ rustc_const_stable( feature = "slice_as_chunks" , since = "CURRENT_RUSTC_VERSION " ) ]
1410+ #[ stable( feature = "slice_as_chunks" , since = "1.88.0 " ) ]
1411+ #[ rustc_const_stable( feature = "slice_as_chunks" , since = "1.88.0 " ) ]
14121412 #[ inline]
14131413 #[ track_caller]
14141414 #[ must_use]
@@ -1498,8 +1498,8 @@ impl<T> [T] {
14981498 /// // let chunks: &[[_; 5]] = slice.as_chunks_unchecked_mut() // The slice length is not a multiple of 5
14991499 /// // let chunks: &[[_; 0]] = slice.as_chunks_unchecked_mut() // Zero-length chunks are never allowed
15001500 /// ```
1501- #[ stable( feature = "slice_as_chunks" , since = "CURRENT_RUSTC_VERSION " ) ]
1502- #[ rustc_const_stable( feature = "slice_as_chunks" , since = "CURRENT_RUSTC_VERSION " ) ]
1501+ #[ stable( feature = "slice_as_chunks" , since = "1.88.0 " ) ]
1502+ #[ rustc_const_stable( feature = "slice_as_chunks" , since = "1.88.0 " ) ]
15031503 #[ inline]
15041504 #[ must_use]
15051505 pub const unsafe fn as_chunks_unchecked_mut < const N : usize > ( & mut self ) -> & mut [ [ T ; N ] ] {
@@ -1551,8 +1551,8 @@ impl<T> [T] {
15511551 /// }
15521552 /// assert_eq!(v, &[1, 1, 2, 2, 9]);
15531553 /// ```
1554- #[ stable( feature = "slice_as_chunks" , since = "CURRENT_RUSTC_VERSION " ) ]
1555- #[ rustc_const_stable( feature = "slice_as_chunks" , since = "CURRENT_RUSTC_VERSION " ) ]
1554+ #[ stable( feature = "slice_as_chunks" , since = "1.88.0 " ) ]
1555+ #[ rustc_const_stable( feature = "slice_as_chunks" , since = "1.88.0 " ) ]
15561556 #[ inline]
15571557 #[ track_caller]
15581558 #[ must_use]
@@ -1604,8 +1604,8 @@ impl<T> [T] {
16041604 /// }
16051605 /// assert_eq!(v, &[9, 1, 1, 2, 2]);
16061606 /// ```
1607- #[ stable( feature = "slice_as_chunks" , since = "CURRENT_RUSTC_VERSION " ) ]
1608- #[ rustc_const_stable( feature = "slice_as_chunks" , since = "CURRENT_RUSTC_VERSION " ) ]
1607+ #[ stable( feature = "slice_as_chunks" , since = "1.88.0 " ) ]
1608+ #[ rustc_const_stable( feature = "slice_as_chunks" , since = "1.88.0 " ) ]
16091609 #[ inline]
16101610 #[ track_caller]
16111611 #[ must_use]
0 commit comments