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

pub fn zip_with<T, U, V>(
    f: impl Fn((T, U)) -> V,
    it1: impl Iterator<Item = T>,
    it2: impl Iterator<Item = U>
) -> impl Iterator<Item = V>

Zip two iterator into one iterator by mapping with a function

Arguments