Macro kaguya_rs::zip_with[][src]

macro_rules! zip_with {
    ($f:expr) => { ... };
    ($f:expr=>) => { ... };
    ($f:expr,$it:expr) => { ... };
}

macro of zip_with

Syntax:

  1. zip_with!(f) :: (Iterator T -> Iterator U -> Iterator V) -> Iterator V
  2. zip_with!(f=>) :: Iterator T -> Iterator U -> Iterator V
  3. zip_with!(f, it) :: Iterator U -> Iterator V