@@ -1303,8 +1303,8 @@ impl<T> [T] {
1303
1303
/// // let chunks: &[[_; 5]] = slice.as_chunks_unchecked() // The slice length is not a multiple of 5
1304
1304
/// // let chunks: &[[_; 0]] = slice.as_chunks_unchecked() // Zero-length chunks are never allowed
1305
1305
/// ```
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 " ) ]
1308
1308
#[ inline]
1309
1309
#[ must_use]
1310
1310
pub const unsafe fn as_chunks_unchecked < const N : usize > ( & self ) -> & [ [ T ; N ] ] {
@@ -1360,8 +1360,8 @@ impl<T> [T] {
1360
1360
/// };
1361
1361
/// assert_eq!(chunks, &[['R', 'u'], ['s', 't']]);
1362
1362
/// ```
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 " ) ]
1365
1365
#[ inline]
1366
1366
#[ track_caller]
1367
1367
#[ must_use]
@@ -1407,8 +1407,8 @@ impl<T> [T] {
1407
1407
/// assert_eq!(remainder, &['l']);
1408
1408
/// assert_eq!(chunks, &[['o', 'r'], ['e', 'm']]);
1409
1409
/// ```
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 " ) ]
1412
1412
#[ inline]
1413
1413
#[ track_caller]
1414
1414
#[ must_use]
@@ -1498,8 +1498,8 @@ impl<T> [T] {
1498
1498
/// // let chunks: &[[_; 5]] = slice.as_chunks_unchecked_mut() // The slice length is not a multiple of 5
1499
1499
/// // let chunks: &[[_; 0]] = slice.as_chunks_unchecked_mut() // Zero-length chunks are never allowed
1500
1500
/// ```
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 " ) ]
1503
1503
#[ inline]
1504
1504
#[ must_use]
1505
1505
pub const unsafe fn as_chunks_unchecked_mut < const N : usize > ( & mut self ) -> & mut [ [ T ; N ] ] {
@@ -1551,8 +1551,8 @@ impl<T> [T] {
1551
1551
/// }
1552
1552
/// assert_eq!(v, &[1, 1, 2, 2, 9]);
1553
1553
/// ```
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 " ) ]
1556
1556
#[ inline]
1557
1557
#[ track_caller]
1558
1558
#[ must_use]
@@ -1604,8 +1604,8 @@ impl<T> [T] {
1604
1604
/// }
1605
1605
/// assert_eq!(v, &[9, 1, 1, 2, 2]);
1606
1606
/// ```
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 " ) ]
1609
1609
#[ inline]
1610
1610
#[ track_caller]
1611
1611
#[ must_use]
0 commit comments