Function kaguya_rs::basic_fn::fun::zip[][src]

pub fn zip<T, U>(
    it1: impl Iterator<Item = T>,
    it2: impl Iterator<Item = U>
) -> Zip<impl Iterator<Item = T>, impl Iterator<Item = U>>

Zip two iterator into one iterator which return same index of item on two iterators

Arguments