@@ -60,7 +60,7 @@ pub use iter::ArrayWindows;
60
60
#[ unstable( feature = "slice_group_by" , issue = "80552" ) ]
61
61
pub use iter:: { GroupBy , GroupByMut } ;
62
62
63
- #[ stable( feature = "split_inclusive" , since = "1.49 .0" ) ]
63
+ #[ stable( feature = "split_inclusive" , since = "1.51 .0" ) ]
64
64
pub use iter:: { SplitInclusive , SplitInclusiveMut } ;
65
65
66
66
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -1569,7 +1569,7 @@ impl<T> [T] {
1569
1569
/// assert_eq!(iter.next().unwrap(), &[10, 40, 33]);
1570
1570
/// assert!(iter.next().is_none());
1571
1571
/// ```
1572
- #[ stable( feature = "split_inclusive" , since = "1.49 .0" ) ]
1572
+ #[ stable( feature = "split_inclusive" , since = "1.51 .0" ) ]
1573
1573
#[ inline]
1574
1574
pub fn split_inclusive < F > ( & self , pred : F ) -> SplitInclusive < ' _ , T , F >
1575
1575
where
@@ -1593,7 +1593,7 @@ impl<T> [T] {
1593
1593
/// }
1594
1594
/// assert_eq!(v, [10, 40, 1, 20, 1, 1]);
1595
1595
/// ```
1596
- #[ stable( feature = "split_inclusive" , since = "1.49 .0" ) ]
1596
+ #[ stable( feature = "split_inclusive" , since = "1.51 .0" ) ]
1597
1597
#[ inline]
1598
1598
pub fn split_inclusive_mut < F > ( & mut self , pred : F ) -> SplitInclusiveMut < ' _ , T , F >
1599
1599
where
0 commit comments