Closed
Description
Feature gate: #![feature(iter_zip)]
This is a tracking issue for core::iter::zip
, a function that combines two IntoIterator
arguments into a Zip
iterator.
Public API
// core::iter
pub fn zip<A, B>(a: A, b: B) -> Zip<A::IntoIter, B::IntoIter>
where
A: IntoIterator,
B: IntoIterator,
Steps / History
- Implementation: Add function core::iter::zip #82917
- Final commenting period (FCP) Tracking Issue for
core::iter::zip
#83574 (comment) - Stabilization PR Stabilize
iter::zip
#91881
Unresolved Questions
- None yet.