Skip to content

Commit f0a6052

Browse files
committed
Add the tracking issue for #![feature(iter_zip)]
1 parent e82e812 commit f0a6052

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

library/core/src/iter/adapters/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ pub use self::map_while::MapWhile;
5151
#[unstable(feature = "trusted_random_access", issue = "none")]
5252
pub use self::zip::TrustedRandomAccess;
5353

54-
#[unstable(feature = "iter_zip", issue = "none")]
54+
#[unstable(feature = "iter_zip", issue = "83574")]
5555
pub use self::zip::zip;
5656

5757
/// This trait provides transitive access to source-stage in an interator-adapter pipeline

library/core/src/iter/adapters/zip.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ impl<A: Iterator, B: Iterator> Zip<A, B> {
5555
/// println!("x:{}, y:{}, z:{}", x, y, z);
5656
/// }
5757
/// ```
58-
#[unstable(feature = "iter_zip", issue = "none")]
58+
#[unstable(feature = "iter_zip", issue = "83574")]
5959
pub fn zip<A, B>(a: A, b: B) -> Zip<A::IntoIter, B::IntoIter>
6060
where
6161
A: IntoIterator,

library/core/src/iter/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ pub use self::traits::{
389389
DoubleEndedIterator, ExactSizeIterator, Extend, FromIterator, IntoIterator, Product, Sum,
390390
};
391391

392-
#[unstable(feature = "iter_zip", issue = "none")]
392+
#[unstable(feature = "iter_zip", issue = "83574")]
393393
pub use self::adapters::zip;
394394
#[stable(feature = "iter_cloned", since = "1.1.0")]
395395
pub use self::adapters::Cloned;

0 commit comments

Comments
 (0)