Skip to content

Commit c5a129e

Browse files
committed
Auto merge of #51200 - tmccombs:stable-iter-repeat-with, r=Centril,kennytm
Stabilize iterator_repeat_with Fixes #48169
2 parents 900037e + 87941b0 commit c5a129e

File tree

5 files changed

+8
-34
lines changed

5 files changed

+8
-34
lines changed

src/libcore/iter/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ pub use self::range::Step;
333333

334334
#[stable(feature = "rust1", since = "1.0.0")]
335335
pub use self::sources::{Repeat, repeat};
336-
#[unstable(feature = "iterator_repeat_with", issue = "48169")]
336+
#[stable(feature = "iterator_repeat_with", since = "1.28.0")]
337337
pub use self::sources::{RepeatWith, repeat_with};
338338
#[stable(feature = "iter_empty", since = "1.2.0")]
339339
pub use self::sources::{Empty, empty};

src/libcore/iter/sources.rs

+7-19
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,12 @@ pub fn repeat<T: Clone>(elt: T) -> Repeat<T> {
113113
///
114114
/// [`repeat_with`]: fn.repeat_with.html
115115
#[derive(Copy, Clone, Debug)]
116-
#[unstable(feature = "iterator_repeat_with", issue = "48169")]
116+
#[stable(feature = "iterator_repeat_with", since = "1.28.0")]
117117
pub struct RepeatWith<F> {
118118
repeater: F
119119
}
120120

121-
#[unstable(feature = "iterator_repeat_with", issue = "48169")]
121+
#[stable(feature = "iterator_repeat_with", since = "1.28.0")]
122122
impl<A, F: FnMut() -> A> Iterator for RepeatWith<F> {
123123
type Item = A;
124124

@@ -129,13 +129,7 @@ impl<A, F: FnMut() -> A> Iterator for RepeatWith<F> {
129129
fn size_hint(&self) -> (usize, Option<usize>) { (usize::MAX, None) }
130130
}
131131

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")]
139133
impl<A, F: FnMut() -> A> FusedIterator for RepeatWith<F> {}
140134

141135
#[unstable(feature = "trusted_len", issue = "37572")]
@@ -158,19 +152,15 @@ unsafe impl<A, F: FnMut() -> A> TrustedLen for RepeatWith<F> {}
158152
///
159153
/// [`repeat`]: fn.repeat.html
160154
///
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.
166158
///
167159
/// # Examples
168160
///
169161
/// Basic usage:
170162
///
171163
/// ```
172-
/// #![feature(iterator_repeat_with)]
173-
///
174164
/// use std::iter;
175165
///
176166
/// // 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> {}
191181
/// Using mutation and going finite:
192182
///
193183
/// ```rust
194-
/// #![feature(iterator_repeat_with)]
195-
///
196184
/// use std::iter;
197185
///
198186
/// // From the zeroth to the third power of two:
@@ -209,7 +197,7 @@ unsafe impl<A, F: FnMut() -> A> TrustedLen for RepeatWith<F> {}
209197
/// assert_eq!(None, pow2.next());
210198
/// ```
211199
#[inline]
212-
#[unstable(feature = "iterator_repeat_with", issue = "48169")]
200+
#[stable(feature = "iterator_repeat_with", since = "1.28.0")]
213201
pub fn repeat_with<A, F: FnMut() -> A>(repeater: F) -> RepeatWith<F> {
214202
RepeatWith { repeater }
215203
}

src/libcore/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@
9090
#![feature(fundamental)]
9191
#![feature(intrinsics)]
9292
#![feature(iterator_flatten)]
93-
#![feature(iterator_repeat_with)]
9493
#![feature(lang_items)]
9594
#![feature(link_llvm_intrinsics)]
9695
#![feature(never_type)]

src/libcore/tests/iter.rs

-12
Original file line numberDiff line numberDiff line change
@@ -1722,18 +1722,6 @@ fn test_repeat_with() {
17221722
assert_eq!(repeat_with(|| NotClone(42)).size_hint(), (usize::MAX, None));
17231723
}
17241724

1725-
#[test]
1726-
fn test_repeat_with_rev() {
1727-
let mut curr = 1;
1728-
let mut pow2 = repeat_with(|| { let tmp = curr; curr *= 2; tmp })
1729-
.rev().take(4);
1730-
assert_eq!(pow2.next(), Some(1));
1731-
assert_eq!(pow2.next(), Some(2));
1732-
assert_eq!(pow2.next(), Some(4));
1733-
assert_eq!(pow2.next(), Some(8));
1734-
assert_eq!(pow2.next(), None);
1735-
}
1736-
17371725
#[test]
17381726
fn test_repeat_with_take() {
17391727
let mut it = repeat_with(|| 42).take(3);

src/libcore/tests/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
#![feature(fmt_internals)]
2525
#![feature(hashmap_internals)]
2626
#![feature(iterator_flatten)]
27-
#![feature(iterator_repeat_with)]
2827
#![feature(pattern)]
2928
#![feature(range_is_empty)]
3029
#![feature(raw)]

0 commit comments

Comments
 (0)