pub fn zip<I: IntoNonEmptyIterator, J: IntoNonEmptyIterator>(
first: I,
second: J,
) -> Zip<I::IntoNonEmptyIter, J::IntoNonEmptyIter>Expand description
Converts the given arguments to non-empty iterators and zips them.
See the documentation of NonEmptyIterator::zip for more.