@@ -2974,21 +2974,21 @@ unsafe impl<'a, T> TrustedRandomAccess for IterMut<'a, T> {
2974
2974
///
2975
2975
/// [`group_by`]: ../../std/primitive.slice.html#method.group_by
2976
2976
/// [slices]: ../../std/primitive.slice.html
2977
- #[ unstable( feature = "slice_group_by" , issue = "0 " ) ]
2977
+ #[ unstable( feature = "slice_group_by" , issue = "none " ) ]
2978
2978
#[ derive( Debug ) ] // FIXME implement Debug to be more user friendly
2979
2979
pub struct GroupBy < ' a , T : ' a , P > {
2980
2980
slice : & ' a [ T ] ,
2981
2981
predicate : P ,
2982
2982
}
2983
2983
2984
- #[ unstable( feature = "slice_group_by" , issue = "0 " ) ]
2984
+ #[ unstable( feature = "slice_group_by" , issue = "none " ) ]
2985
2985
impl < ' a , T : ' a , P > GroupBy < ' a , T , P > {
2986
2986
pub ( super ) fn new ( slice : & ' a [ T ] , predicate : P ) -> Self {
2987
2987
GroupBy { slice, predicate }
2988
2988
}
2989
2989
}
2990
2990
2991
- #[ unstable( feature = "slice_group_by" , issue = "0 " ) ]
2991
+ #[ unstable( feature = "slice_group_by" , issue = "none " ) ]
2992
2992
impl < ' a , T : ' a , P > Iterator for GroupBy < ' a , T , P >
2993
2993
where P : FnMut ( & T , & T ) -> bool ,
2994
2994
{
@@ -3025,7 +3025,7 @@ where P: FnMut(&T, &T) -> bool,
3025
3025
}
3026
3026
}
3027
3027
3028
- #[ unstable( feature = "slice_group_by" , issue = "0 " ) ]
3028
+ #[ unstable( feature = "slice_group_by" , issue = "none " ) ]
3029
3029
impl < ' a , T : ' a , P > DoubleEndedIterator for GroupBy < ' a , T , P >
3030
3030
where P : FnMut ( & T , & T ) -> bool ,
3031
3031
{
@@ -3046,7 +3046,7 @@ where P: FnMut(&T, &T) -> bool,
3046
3046
}
3047
3047
}
3048
3048
3049
- #[ unstable( feature = "slice_group_by" , issue = "0 " ) ]
3049
+ #[ unstable( feature = "slice_group_by" , issue = "none " ) ]
3050
3050
impl < ' a , T : ' a , P > FusedIterator for GroupBy < ' a , T , P >
3051
3051
where P : FnMut ( & T , & T ) -> bool ,
3052
3052
{ }
@@ -3058,21 +3058,21 @@ where P: FnMut(&T, &T) -> bool,
3058
3058
///
3059
3059
/// [`group_by_mut`]: ../../std/primitive.slice.html#method.group_by_mut
3060
3060
/// [slices]: ../../std/primitive.slice.html
3061
- #[ unstable( feature = "slice_group_by" , issue = "0 " ) ]
3061
+ #[ unstable( feature = "slice_group_by" , issue = "none " ) ]
3062
3062
#[ derive( Debug ) ] // FIXME implement Debug to be more user friendly
3063
3063
pub struct GroupByMut < ' a , T : ' a , P > {
3064
3064
slice : & ' a mut [ T ] ,
3065
3065
predicate : P ,
3066
3066
}
3067
3067
3068
- #[ unstable( feature = "slice_group_by" , issue = "0 " ) ]
3068
+ #[ unstable( feature = "slice_group_by" , issue = "none " ) ]
3069
3069
impl < ' a , T : ' a , P > GroupByMut < ' a , T , P > {
3070
3070
pub ( super ) fn new ( slice : & ' a mut [ T ] , predicate : P ) -> Self {
3071
3071
GroupByMut { slice, predicate }
3072
3072
}
3073
3073
}
3074
3074
3075
- #[ unstable( feature = "slice_group_by" , issue = "0 " ) ]
3075
+ #[ unstable( feature = "slice_group_by" , issue = "none " ) ]
3076
3076
impl < ' a , T : ' a , P > Iterator for GroupByMut < ' a , T , P >
3077
3077
where P : FnMut ( & T , & T ) -> bool ,
3078
3078
{
@@ -3110,7 +3110,7 @@ where P: FnMut(&T, &T) -> bool,
3110
3110
}
3111
3111
}
3112
3112
3113
- #[ unstable( feature = "slice_group_by" , issue = "0 " ) ]
3113
+ #[ unstable( feature = "slice_group_by" , issue = "none " ) ]
3114
3114
impl < ' a , T : ' a , P > DoubleEndedIterator for GroupByMut < ' a , T , P >
3115
3115
where P : FnMut ( & T , & T ) -> bool ,
3116
3116
{
0 commit comments