File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -212,15 +212,15 @@ pub trait SliceExt {
212
212
#[ stable( feature = "copy_from_slice" , since = "1.9.0" ) ]
213
213
fn copy_from_slice ( & mut self , src : & [ Self :: Item ] ) where Self :: Item : Copy ;
214
214
215
- #[ unstable ( feature = "sort_unstable" , issue = "40585 " ) ]
215
+ #[ stable ( feature = "sort_unstable" , since = "1.20.0 " ) ]
216
216
fn sort_unstable ( & mut self )
217
217
where Self :: Item : Ord ;
218
218
219
- #[ unstable ( feature = "sort_unstable" , issue = "40585 " ) ]
219
+ #[ stable ( feature = "sort_unstable" , since = "1.20.0 " ) ]
220
220
fn sort_unstable_by < F > ( & mut self , compare : F )
221
221
where F : FnMut ( & Self :: Item , & Self :: Item ) -> Ordering ;
222
222
223
- #[ unstable ( feature = "sort_unstable" , issue = "40585 " ) ]
223
+ #[ stable ( feature = "sort_unstable" , since = "1.20.0 " ) ]
224
224
fn sort_unstable_by_key < B , F > ( & mut self , f : F )
225
225
where F : FnMut ( & Self :: Item ) -> B ,
226
226
B : Ord ;
You can’t perform that action at this time.
0 commit comments