File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -2310,7 +2310,7 @@ pub trait Iterator {
23102310 /// assert_eq!(iter.next(), Some(&2));
23112311 /// ```
23122312 #[ inline]
2313- #[ unstable( feature = "at_least " , reason = "new API" , issue = "none" ) ]
2313+ #[ unstable( feature = "iter_at_least " , reason = "new API" , issue = "none" ) ]
23142314 fn at_least < F > ( & mut self , n : usize , f : F ) -> bool
23152315 where
23162316 Self : Sized ,
@@ -2379,7 +2379,7 @@ pub trait Iterator {
23792379 /// assert_eq!(iter.next(), Some(&3));
23802380 /// ```
23812381 #[ inline]
2382- #[ unstable( feature = "at_most " , reason = "new API" , issue = "none" ) ]
2382+ #[ unstable( feature = "iter_at_most " , reason = "new API" , issue = "none" ) ]
23832383 fn at_most < F > ( & mut self , n : usize , f : F ) -> bool
23842384 where
23852385 Self : Sized ,
Original file line number Diff line number Diff line change 7777#![ feature( integer_atomics) ]
7878#![ feature( slice_group_by) ]
7979#![ feature( trusted_random_access) ]
80+ #![ feature( iter_at_least) ]
81+ #![ feature( iter_at_most) ]
8082#![ deny( unsafe_op_in_unsafe_fn) ]
8183
8284extern crate test;
You can’t perform that action at this time.
0 commit comments