Skip to content

Commit 74df517

Browse files
authored
Rollup merge of rust-lang#128619 - glandium:last_chunk, r=scottmcm
Correct the const stabilization of `<[T]>::last_chunk` `<[T]>::first_chunk` became const stable in 1.77, but `<[T]>::last_chunk` was left out. This was fixed in 3488679, which reached stable in 1.80, making `<[T]>::last_chunk` const stable as of that version, but it is documented as being const stable as 1.77. While this is what should have happened, the documentation should reflect what actually did happen.
2 parents baa00e5 + 70ab51f commit 74df517

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/slice/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ impl<T> [T] {
522522
/// ```
523523
#[inline]
524524
#[stable(feature = "slice_first_last_chunk", since = "1.77.0")]
525-
#[rustc_const_stable(feature = "slice_first_last_chunk", since = "1.77.0")]
525+
#[rustc_const_stable(feature = "const_slice_last_chunk", since = "1.80.0")]
526526
pub const fn last_chunk<const N: usize>(&self) -> Option<&[T; N]> {
527527
if self.len() < N {
528528
None

0 commit comments

Comments
 (0)