Skip to content

Commit b46b05d

Browse files
committed
Stabilize const slice::split_at
This stabilizes the use of the following method in const context: impl<T> [T] { pub const fn split_at(&self, mid: usize) -> (&[T], &[T]); }
1 parent e7eaed2 commit b46b05d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

library/core/src/slice/mod.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1596,7 +1596,8 @@ impl<T> [T] {
15961596
/// }
15971597
/// ```
15981598
#[stable(feature = "rust1", since = "1.0.0")]
1599-
#[rustc_const_unstable(feature = "const_slice_split_at_not_mut", issue = "101158")]
1599+
#[rustc_const_stable(feature = "const_slice_split_at_not_mut", since = "CURRENT_RUSTC_VERSION")]
1600+
#[rustc_allow_const_fn_unstable(slice_split_at_unchecked)]
16001601
#[inline]
16011602
#[track_caller]
16021603
#[must_use]

0 commit comments

Comments
 (0)