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
Unresolved Questions
Feature gate:
#![feature(iter_chain)]This is a tracking issue for the
core::iter::chainfunction that combines twoIntoIteratorarguments together into aChainiterator.Public API
Steps / History
core::iter::chainmethod libs-team#154core::iter::chain#106186core::iter::chain#144963Unresolved Questions
Footnotes
https://std-dev-guide.rust-lang.org/feature-lifecycle/stabilization.html ↩