Skip to content

Commit

Permalink
Add the tracking issue for #![feature(iter_zip)]
Browse files Browse the repository at this point in the history
  • Loading branch information
cuviper committed Mar 27, 2021
1 parent e82e812 commit f0a6052
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion library/core/src/iter/adapters/mod.rs
Expand Up @@ -51,7 +51,7 @@ pub use self::map_while::MapWhile;
#[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
Expand Down
2 changes: 1 addition & 1 deletion library/core/src/iter/adapters/zip.rs
Expand Up @@ -55,7 +55,7 @@ impl<A: Iterator, B: Iterator> Zip<A, B> {
/// 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,
Expand Down
2 changes: 1 addition & 1 deletion library/core/src/iter/mod.rs
Expand Up @@ -389,7 +389,7 @@ pub use self::traits::{
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;
Expand Down

0 comments on commit f0a6052

Please sign in to comment.