macro_rules! chain {
() => { ... };
($first: expr) => { ... };
($first: expr, $($iter:expr),*) => { ... };
}Expand description
A macro used to simplify chaining together multiple IntoIter types.
Returns a single iterator yielding all of the chained elements.