Macro utils::chain [] [src]

macro_rules! chain {
    () => { ... };
    ($first: expr) => { ... };
    ($first: expr, $($iter:expr),*) => { ... };
}

A macro used to simplify chaining together multiple IntoIter types.

Returns a single iterator yielding all of the chained elements.