@@ -113,12 +113,12 @@ pub fn repeat<T: Clone>(elt: T) -> Repeat<T> {
113
113
///
114
114
/// [`repeat_with`]: fn.repeat_with.html
115
115
#[ derive( Copy , Clone , Debug ) ]
116
- #[ unstable ( feature = "iterator_repeat_with" , issue = "48169 " ) ]
116
+ #[ stable ( feature = "iterator_repeat_with" , since = "1.28.0 " ) ]
117
117
pub struct RepeatWith < F > {
118
118
repeater : F
119
119
}
120
120
121
- #[ unstable ( feature = "iterator_repeat_with" , issue = "48169 " ) ]
121
+ #[ stable ( feature = "iterator_repeat_with" , since = "1.28.0 " ) ]
122
122
impl < A , F : FnMut ( ) -> A > Iterator for RepeatWith < F > {
123
123
type Item = A ;
124
124
@@ -129,13 +129,7 @@ impl<A, F: FnMut() -> A> Iterator for RepeatWith<F> {
129
129
fn size_hint ( & self ) -> ( usize , Option < usize > ) { ( usize:: MAX , None ) }
130
130
}
131
131
132
- #[ unstable( feature = "iterator_repeat_with" , issue = "48169" ) ]
133
- impl < A , F : FnMut ( ) -> A > DoubleEndedIterator for RepeatWith < F > {
134
- #[ inline]
135
- fn next_back ( & mut self ) -> Option < A > { self . next ( ) }
136
- }
137
-
138
- #[ unstable( feature = "iterator_repeat_with" , issue = "48169" ) ]
132
+ #[ stable( feature = "iterator_repeat_with" , since = "1.28.0" ) ]
139
133
impl < A , F : FnMut ( ) -> A > FusedIterator for RepeatWith < F > { }
140
134
141
135
#[ unstable( feature = "trusted_len" , issue = "37572" ) ]
@@ -158,19 +152,15 @@ unsafe impl<A, F: FnMut() -> A> TrustedLen for RepeatWith<F> {}
158
152
///
159
153
/// [`repeat`]: fn.repeat.html
160
154
///
161
- /// An iterator produced by `repeat_with()` is a `DoubleEndedIterator`.
162
- /// It is important to note that reversing `repeat_with(f)` will produce
163
- /// the exact same sequence as the non-reversed iterator. In other words,
164
- /// `repeat_with(f).rev().collect::<Vec<_>>()` is equivalent to
165
- /// `repeat_with(f).collect::<Vec<_>>()`.
155
+ /// An iterator produced by `repeat_with()` is not a `DoubleEndedIterator`.
156
+ /// If you need `repeat_with()` to return a `DoubleEndedIterator`,
157
+ /// please open a GitHub issue explaining your use case.
166
158
///
167
159
/// # Examples
168
160
///
169
161
/// Basic usage:
170
162
///
171
163
/// ```
172
- /// #![feature(iterator_repeat_with)]
173
- ///
174
164
/// use std::iter;
175
165
///
176
166
/// // let's assume we have some value of a type that is not `Clone`
@@ -191,8 +181,6 @@ unsafe impl<A, F: FnMut() -> A> TrustedLen for RepeatWith<F> {}
191
181
/// Using mutation and going finite:
192
182
///
193
183
/// ```rust
194
- /// #![feature(iterator_repeat_with)]
195
- ///
196
184
/// use std::iter;
197
185
///
198
186
/// // From the zeroth to the third power of two:
@@ -209,7 +197,7 @@ unsafe impl<A, F: FnMut() -> A> TrustedLen for RepeatWith<F> {}
209
197
/// assert_eq!(None, pow2.next());
210
198
/// ```
211
199
#[ inline]
212
- #[ unstable ( feature = "iterator_repeat_with" , issue = "48169 " ) ]
200
+ #[ stable ( feature = "iterator_repeat_with" , since = "1.28.0 " ) ]
213
201
pub fn repeat_with < A , F : FnMut ( ) -> A > ( repeater : F ) -> RepeatWith < F > {
214
202
RepeatWith { repeater }
215
203
}
0 commit comments