]> git.lizzy.rs Git - rust.git/commitdiff
Add the tracking issue for `#![feature(iter_zip)]`
authorJosh Stone <jistone@redhat.com>
Sat, 27 Mar 2021 17:14:54 +0000 (10:14 -0700)
committerJosh Stone <jistone@redhat.com>
Sat, 27 Mar 2021 17:14:54 +0000 (10:14 -0700)
library/core/src/iter/adapters/mod.rs
library/core/src/iter/adapters/zip.rs
library/core/src/iter/mod.rs

index 3859d76ad5e2b427055e16c0f6bc79992cf041f0..ba4050757cb9462233ad04d45e6bcd2882403815 100644 (file)
@@ -51,7 +51,7 @@
 #[unstable(feature = "trusted_random_access", issue = "none")]
 pub use self::zip::TrustedRandomAccess;
 
-#[unstable(feature = "iter_zip", issue = "none")]
+#[unstable(feature = "iter_zip", issue = "83574")]
 pub use self::zip::zip;
 
 /// This trait provides transitive access to source-stage in an interator-adapter pipeline
index ad630ba95b81e5fffaca432e55b780e882a4e5c1..2f8f504d8fcaa1c3b630efad35eac7e43266ee5b 100644 (file)
@@ -55,7 +55,7 @@ fn super_nth(&mut self, mut n: usize) -> Option<(A::Item, B::Item)> {
 ///     println!("x:{}, y:{}, z:{}", x, y, z);
 /// }
 /// ```
-#[unstable(feature = "iter_zip", issue = "none")]
+#[unstable(feature = "iter_zip", issue = "83574")]
 pub fn zip<A, B>(a: A, b: B) -> Zip<A::IntoIter, B::IntoIter>
 where
     A: IntoIterator,
index 8d905feeb4940a7a0252293b9ba7dbd83491889c..2a179f0b1d77b16c53f6116f3949d4c6ec42e19b 100644 (file)
     DoubleEndedIterator, ExactSizeIterator, Extend, FromIterator, IntoIterator, Product, Sum,
 };
 
-#[unstable(feature = "iter_zip", issue = "none")]
+#[unstable(feature = "iter_zip", issue = "83574")]
 pub use self::adapters::zip;
 #[stable(feature = "iter_cloned", since = "1.1.0")]
 pub use self::adapters::Cloned;