@@ -1169,7 +1169,7 @@ impl<T> [T] {
11691169 /// assert_eq!(iter.next().unwrap(), &[10, 40, 33]);
11701170 /// assert!(iter.next().is_none());
11711171 /// ```
1172- #[ unstable( feature = "split_inclusive" , issue = "none " ) ]
1172+ #[ unstable( feature = "split_inclusive" , issue = "72360 " ) ]
11731173 #[ inline]
11741174 pub fn split_inclusive < F > ( & self , pred : F ) -> SplitInclusive < ' _ , T , F >
11751175 where
@@ -1194,7 +1194,7 @@ impl<T> [T] {
11941194 /// }
11951195 /// assert_eq!(v, [10, 40, 1, 20, 1, 1]);
11961196 /// ```
1197- #[ unstable( feature = "split_inclusive" , issue = "none " ) ]
1197+ #[ unstable( feature = "split_inclusive" , issue = "72360 " ) ]
11981198 #[ inline]
11991199 pub fn split_inclusive_mut < F > ( & mut self , pred : F ) -> SplitInclusiveMut < ' _ , T , F >
12001200 where
@@ -3852,7 +3852,7 @@ impl<T, P> FusedIterator for Split<'_, T, P> where P: FnMut(&T) -> bool {}
38523852///
38533853/// [`split_inclusive`]: ../../std/primitive.slice.html#method.split_inclusive
38543854/// [slices]: ../../std/primitive.slice.html
3855- #[ unstable( feature = "split_inclusive" , issue = "none " ) ]
3855+ #[ unstable( feature = "split_inclusive" , issue = "72360 " ) ]
38563856pub struct SplitInclusive < ' a , T : ' a , P >
38573857where
38583858 P : FnMut ( & T ) -> bool ,
@@ -3862,7 +3862,7 @@ where
38623862 finished : bool ,
38633863}
38643864
3865- #[ unstable( feature = "split_inclusive" , issue = "none " ) ]
3865+ #[ unstable( feature = "split_inclusive" , issue = "72360 " ) ]
38663866impl < T : fmt:: Debug , P > fmt:: Debug for SplitInclusive < ' _ , T , P >
38673867where
38683868 P : FnMut ( & T ) -> bool ,
@@ -3876,7 +3876,7 @@ where
38763876}
38773877
38783878// FIXME(#26925) Remove in favor of `#[derive(Clone)]`
3879- #[ unstable( feature = "split_inclusive" , issue = "none " ) ]
3879+ #[ unstable( feature = "split_inclusive" , issue = "72360 " ) ]
38803880impl < T , P > Clone for SplitInclusive < ' _ , T , P >
38813881where
38823882 P : Clone + FnMut ( & T ) -> bool ,
@@ -3886,7 +3886,7 @@ where
38863886 }
38873887}
38883888
3889- #[ unstable( feature = "split_inclusive" , issue = "none " ) ]
3889+ #[ unstable( feature = "split_inclusive" , issue = "72360 " ) ]
38903890impl < ' a , T , P > Iterator for SplitInclusive < ' a , T , P >
38913891where
38923892 P : FnMut ( & T ) -> bool ,
@@ -3915,7 +3915,7 @@ where
39153915 }
39163916}
39173917
3918- #[ unstable( feature = "split_inclusive" , issue = "none " ) ]
3918+ #[ unstable( feature = "split_inclusive" , issue = "72360 " ) ]
39193919impl < ' a , T , P > DoubleEndedIterator for SplitInclusive < ' a , T , P >
39203920where
39213921 P : FnMut ( & T ) -> bool ,
@@ -3940,7 +3940,7 @@ where
39403940 }
39413941}
39423942
3943- #[ unstable( feature = "split_inclusive" , issue = "none " ) ]
3943+ #[ unstable( feature = "split_inclusive" , issue = "72360 " ) ]
39443944impl < T , P > FusedIterator for SplitInclusive < ' _ , T , P > where P : FnMut ( & T ) -> bool { }
39453945
39463946/// An iterator over the mutable subslices of the vector which are separated
@@ -4065,7 +4065,7 @@ impl<T, P> FusedIterator for SplitMut<'_, T, P> where P: FnMut(&T) -> bool {}
40654065///
40664066/// [`split_inclusive_mut`]: ../../std/primitive.slice.html#method.split_inclusive_mut
40674067/// [slices]: ../../std/primitive.slice.html
4068- #[ unstable( feature = "split_inclusive" , issue = "none " ) ]
4068+ #[ unstable( feature = "split_inclusive" , issue = "72360 " ) ]
40694069pub struct SplitInclusiveMut < ' a , T : ' a , P >
40704070where
40714071 P : FnMut ( & T ) -> bool ,
@@ -4075,7 +4075,7 @@ where
40754075 finished : bool ,
40764076}
40774077
4078- #[ unstable( feature = "split_inclusive" , issue = "none " ) ]
4078+ #[ unstable( feature = "split_inclusive" , issue = "72360 " ) ]
40794079impl < T : fmt:: Debug , P > fmt:: Debug for SplitInclusiveMut < ' _ , T , P >
40804080where
40814081 P : FnMut ( & T ) -> bool ,
@@ -4088,7 +4088,7 @@ where
40884088 }
40894089}
40904090
4091- #[ unstable( feature = "split_inclusive" , issue = "none " ) ]
4091+ #[ unstable( feature = "split_inclusive" , issue = "72360 " ) ]
40924092impl < ' a , T , P > Iterator for SplitInclusiveMut < ' a , T , P >
40934093where
40944094 P : FnMut ( & T ) -> bool ,
@@ -4128,7 +4128,7 @@ where
41284128 }
41294129}
41304130
4131- #[ unstable( feature = "split_inclusive" , issue = "none " ) ]
4131+ #[ unstable( feature = "split_inclusive" , issue = "72360 " ) ]
41324132impl < ' a , T , P > DoubleEndedIterator for SplitInclusiveMut < ' a , T , P >
41334133where
41344134 P : FnMut ( & T ) -> bool ,
@@ -4162,7 +4162,7 @@ where
41624162 }
41634163}
41644164
4165- #[ unstable( feature = "split_inclusive" , issue = "none " ) ]
4165+ #[ unstable( feature = "split_inclusive" , issue = "72360 " ) ]
41664166impl < T , P > FusedIterator for SplitInclusiveMut < ' _ , T , P > where P : FnMut ( & T ) -> bool { }
41674167
41684168/// An iterator over subslices separated by elements that match a predicate
0 commit comments