zip_with(f, xs, ys)
Return a list with the results of applying the function f to the corresponding pairs from xs and ys.
f
xs
ys
zip_with(`+`, [1, 2, 3], [4, 5, 6]) // [5, 7, 9]
Core Module Index | Contents