Crate zip_long

source ·

Structs

Filler zips together two iterators using the provided closure to fill in for the shorter iterator once it is exhausted.
FillerWith zips together two iterators using clones of the provided item to fill in for the shorter iterator once is is exhausted.

Traits

Zip together two iterators, creating a single iterator that yields the item(s) in parallel until the longer iterator is exhausted. Unlike the zip iterator adaptor in ::std::iter, these adaptors yield elements until the LONGER iterator is exhausted.