@@ -2555,7 +2555,7 @@ impl<I: RandomAccessIterator, F> RandomAccessIterator for Inspect<I, F>
25552555#[ unstable( feature = "iter_unfold" ) ]
25562556#[ derive( Clone ) ]
25572557#[ 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 \
25592559 in the standard library") ]
25602560#[ allow( deprecated) ]
25612561pub struct Unfold < St , F > {
@@ -2567,7 +2567,7 @@ pub struct Unfold<St, F> {
25672567
25682568#[ unstable( feature = "iter_unfold" ) ]
25692569#[ 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 \
25712571 in the standard library") ]
25722572#[ allow( deprecated) ]
25732573impl < 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);
30183018/// from a given seed value.
30193019#[ unstable( feature = "iter_iterate" ) ]
30203020#[ 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 \
30223022 in the standard library") ]
30233023#[ allow( deprecated) ]
30243024pub 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>)
30273027/// repeated applications of the given function `f`.
30283028#[ unstable( feature = "iter_iterate" ) ]
30293029#[ 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 \
30313031 in the standard library") ]
30323032#[ allow( deprecated) ]
30333033pub fn iterate < T , F > ( seed : T , f : F ) -> Iterate < T , F > where
0 commit comments