Add the tracking issue for #![feature(iter_zip)]
This commit is contained in:
parent
e82e8129e7
commit
f0a6052d62
@ -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
|
||||
|
@ -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,
|
||||
|
@ -389,7 +389,7 @@
|
||||
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;
|
||||
|
Loading…
Reference in New Issue
Block a user