File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -2310,7 +2310,7 @@ pub trait Iterator {
2310
2310
/// assert_eq!(iter.next(), Some(&2));
2311
2311
/// ```
2312
2312
#[ inline]
2313
- #[ unstable( feature = "at_least " , reason = "new API" , issue = "none" ) ]
2313
+ #[ unstable( feature = "iter_at_least " , reason = "new API" , issue = "none" ) ]
2314
2314
fn at_least < F > ( & mut self , n : usize , f : F ) -> bool
2315
2315
where
2316
2316
Self : Sized ,
@@ -2379,7 +2379,7 @@ pub trait Iterator {
2379
2379
/// assert_eq!(iter.next(), Some(&3));
2380
2380
/// ```
2381
2381
#[ inline]
2382
- #[ unstable( feature = "at_most " , reason = "new API" , issue = "none" ) ]
2382
+ #[ unstable( feature = "iter_at_most " , reason = "new API" , issue = "none" ) ]
2383
2383
fn at_most < F > ( & mut self , n : usize , f : F ) -> bool
2384
2384
where
2385
2385
Self : Sized ,
Original file line number Diff line number Diff line change 77
77
#![ feature( integer_atomics) ]
78
78
#![ feature( slice_group_by) ]
79
79
#![ feature( trusted_random_access) ]
80
+ #![ feature( iter_at_least) ]
81
+ #![ feature( iter_at_most) ]
80
82
#![ deny( unsafe_op_in_unsafe_fn) ]
81
83
82
84
extern crate test;
You can’t perform that action at this time.
0 commit comments