@@ -2974,21 +2974,21 @@ unsafe impl<'a, T> TrustedRandomAccess for IterMut<'a, T> {
29742974///
29752975/// [`group_by`]: ../../std/primitive.slice.html#method.group_by
29762976/// [slices]: ../../std/primitive.slice.html
2977- #[ unstable( feature = "slice_group_by" , issue = "0 " ) ]
2977+ #[ unstable( feature = "slice_group_by" , issue = "none " ) ]
29782978#[ derive( Debug ) ] // FIXME implement Debug to be more user friendly
29792979pub struct GroupBy < ' a , T : ' a , P > {
29802980 slice : & ' a [ T ] ,
29812981 predicate : P ,
29822982}
29832983
2984- #[ unstable( feature = "slice_group_by" , issue = "0 " ) ]
2984+ #[ unstable( feature = "slice_group_by" , issue = "none " ) ]
29852985impl < ' a , T : ' a , P > GroupBy < ' a , T , P > {
29862986 pub ( super ) fn new ( slice : & ' a [ T ] , predicate : P ) -> Self {
29872987 GroupBy { slice, predicate }
29882988 }
29892989}
29902990
2991- #[ unstable( feature = "slice_group_by" , issue = "0 " ) ]
2991+ #[ unstable( feature = "slice_group_by" , issue = "none " ) ]
29922992impl < ' a , T : ' a , P > Iterator for GroupBy < ' a , T , P >
29932993where P : FnMut ( & T , & T ) -> bool ,
29942994{
@@ -3025,7 +3025,7 @@ where P: FnMut(&T, &T) -> bool,
30253025 }
30263026}
30273027
3028- #[ unstable( feature = "slice_group_by" , issue = "0 " ) ]
3028+ #[ unstable( feature = "slice_group_by" , issue = "none " ) ]
30293029impl < ' a , T : ' a , P > DoubleEndedIterator for GroupBy < ' a , T , P >
30303030where P : FnMut ( & T , & T ) -> bool ,
30313031{
@@ -3046,7 +3046,7 @@ where P: FnMut(&T, &T) -> bool,
30463046 }
30473047}
30483048
3049- #[ unstable( feature = "slice_group_by" , issue = "0 " ) ]
3049+ #[ unstable( feature = "slice_group_by" , issue = "none " ) ]
30503050impl < ' a , T : ' a , P > FusedIterator for GroupBy < ' a , T , P >
30513051where P : FnMut ( & T , & T ) -> bool ,
30523052{ }
@@ -3058,21 +3058,21 @@ where P: FnMut(&T, &T) -> bool,
30583058///
30593059/// [`group_by_mut`]: ../../std/primitive.slice.html#method.group_by_mut
30603060/// [slices]: ../../std/primitive.slice.html
3061- #[ unstable( feature = "slice_group_by" , issue = "0 " ) ]
3061+ #[ unstable( feature = "slice_group_by" , issue = "none " ) ]
30623062#[ derive( Debug ) ] // FIXME implement Debug to be more user friendly
30633063pub struct GroupByMut < ' a , T : ' a , P > {
30643064 slice : & ' a mut [ T ] ,
30653065 predicate : P ,
30663066}
30673067
3068- #[ unstable( feature = "slice_group_by" , issue = "0 " ) ]
3068+ #[ unstable( feature = "slice_group_by" , issue = "none " ) ]
30693069impl < ' a , T : ' a , P > GroupByMut < ' a , T , P > {
30703070 pub ( super ) fn new ( slice : & ' a mut [ T ] , predicate : P ) -> Self {
30713071 GroupByMut { slice, predicate }
30723072 }
30733073}
30743074
3075- #[ unstable( feature = "slice_group_by" , issue = "0 " ) ]
3075+ #[ unstable( feature = "slice_group_by" , issue = "none " ) ]
30763076impl < ' a , T : ' a , P > Iterator for GroupByMut < ' a , T , P >
30773077where P : FnMut ( & T , & T ) -> bool ,
30783078{
@@ -3110,7 +3110,7 @@ where P: FnMut(&T, &T) -> bool,
31103110 }
31113111}
31123112
3113- #[ unstable( feature = "slice_group_by" , issue = "0 " ) ]
3113+ #[ unstable( feature = "slice_group_by" , issue = "none " ) ]
31143114impl < ' a , T : ' a , P > DoubleEndedIterator for GroupByMut < ' a , T , P >
31153115where P : FnMut ( & T , & T ) -> bool ,
31163116{
0 commit comments