@@ -2555,7 +2555,7 @@ impl<I: RandomAccessIterator, F> RandomAccessIterator for Inspect<I, F>
2555
2555
#[ unstable( feature = "iter_unfold" ) ]
2556
2556
#[ derive( Clone ) ]
2557
2557
#[ deprecated( since = "1.2.0" ,
2558
- reason = "has gained enough traction to retain its position \
2558
+ reason = "has not gained enough traction to retain its position \
2559
2559
in the standard library") ]
2560
2560
#[ allow( deprecated) ]
2561
2561
pub struct Unfold < St , F > {
@@ -2567,7 +2567,7 @@ pub struct Unfold<St, F> {
2567
2567
2568
2568
#[ unstable( feature = "iter_unfold" ) ]
2569
2569
#[ deprecated( since = "1.2.0" ,
2570
- reason = "has gained enough traction to retain its position \
2570
+ reason = "has not gained enough traction to retain its position \
2571
2571
in the standard library") ]
2572
2572
#[ allow( deprecated) ]
2573
2573
impl < A , St , F > Unfold < St , F > where F : FnMut ( & mut St ) -> Option < A > {
@@ -3018,7 +3018,7 @@ type IterateState<T, F> = (F, Option<T>, bool);
3018
3018
/// from a given seed value.
3019
3019
#[ unstable( feature = "iter_iterate" ) ]
3020
3020
#[ deprecated( since = "1.2.0" ,
3021
- reason = "has gained enough traction to retain its position \
3021
+ reason = "has not gained enough traction to retain its position \
3022
3022
in the standard library") ]
3023
3023
#[ allow( deprecated) ]
3024
3024
pub type Iterate < T , F > = Unfold < IterateState < T , F > , fn ( & mut IterateState < T , F > ) -> Option < T > > ;
@@ -3027,7 +3027,7 @@ pub type Iterate<T, F> = Unfold<IterateState<T, F>, fn(&mut IterateState<T, F>)
3027
3027
/// repeated applications of the given function `f`.
3028
3028
#[ unstable( feature = "iter_iterate" ) ]
3029
3029
#[ deprecated( since = "1.2.0" ,
3030
- reason = "has gained enough traction to retain its position \
3030
+ reason = "has not gained enough traction to retain its position \
3031
3031
in the standard library") ]
3032
3032
#[ allow( deprecated) ]
3033
3033
pub fn iterate < T , F > ( seed : T , f : F ) -> Iterate < T , F > where
0 commit comments