pub fn zip_longest<T, U>(a: T, b: U) -> ZipLongest<T, U> where
    T: Iterator,
    U: Iterator,
Expand description

Create a new ZipLongest iterator.