@@ -1928,7 +1928,6 @@ impl<T> [T] {
1928
1928
/// # Examples
1929
1929
///
1930
1930
/// ```
1931
- /// #![feature(slice_split_at_unchecked)]
1932
1931
///
1933
1932
/// let v = [1, 2, 3, 4, 5, 6];
1934
1933
///
@@ -1950,7 +1949,7 @@ impl<T> [T] {
1950
1949
/// assert_eq!(right, []);
1951
1950
/// }
1952
1951
/// ```
1953
- #[ unstable ( feature = "slice_split_at_unchecked" , reason = "new API" , issue = "76014 ") ]
1952
+ #[ stable ( feature = "slice_split_at_unchecked" , since = "CURRENT_RUSTC_VERSION " ) ]
1954
1953
#[ rustc_const_stable(
1955
1954
feature = "const_slice_split_at_unchecked" ,
1956
1955
since = "CURRENT_RUSTC_VERSION"
@@ -1994,7 +1993,6 @@ impl<T> [T] {
1994
1993
/// # Examples
1995
1994
///
1996
1995
/// ```
1997
- /// #![feature(slice_split_at_unchecked)]
1998
1996
///
1999
1997
/// let mut v = [1, 0, 3, 0, 5, 6];
2000
1998
/// // scoped to restrict the lifetime of the borrows
@@ -2007,7 +2005,7 @@ impl<T> [T] {
2007
2005
/// }
2008
2006
/// assert_eq!(v, [1, 2, 3, 4, 5, 6]);
2009
2007
/// ```
2010
- #[ unstable ( feature = "slice_split_at_unchecked" , reason = "new API" , issue = "76014 ") ]
2008
+ #[ stable ( feature = "slice_split_at_unchecked" , since = "CURRENT_RUSTC_VERSION " ) ]
2011
2009
#[ rustc_const_unstable( feature = "const_slice_split_at_mut" , issue = "101804" ) ]
2012
2010
#[ inline]
2013
2011
#[ must_use]
0 commit comments