Trait zipWith::IntoZipWith [] [src]

pub trait IntoZipWith: IntoIterator + Sized {
    fn zip_with<R, F, S>(
        self,
        other: R,
        zipper: F
    ) -> ZipWith<Self::IntoIter, R::IntoIter, F>
    where
        R: Sized + IntoIterator,
        F: Fn(Self::Item, R::Item) -> S
, { ... } }

Provided Methods

Implementors