Open
Description
Feature gate: #![feature(iter_chain)]
This is a tracking issue for the core::iter::chain
function that combines two IntoIterator
arguments together into a Chain
iterator.
Public API
// core::iter
pub fn chain<A, B>(a: A, b: B) -> Chain<A::IntoIter, B::IntoIter>
where
A: IntoIterator,
B: IntoIterator<Item = A::Item>;
Steps / History
- Approved ACP Add
core::iter::chain
method libs-team#154 - Implementation: Add function
core::iter::chain
#106186 - Final comment period (FCP)1
- Stabilization PR
Unresolved Questions
- None yet.