zip_with


zip_with(f, xs, ys)
      

Return a list with the results of applying the function f to the corresponding pairs from xs and ys.

Examples:


zip_with(`+`, [1, 2, 3], [4, 5, 6])
// [5, 7, 9]
      

Also see:

zip
map


Core Module Index | Contents