-
Notifications
You must be signed in to change notification settings - Fork 5
zip
Subhajit Sahu edited this page Feb 2, 2021
·
26 revisions
Combines values from arrays. 🏃 📼 📦 🌔 📒
Similar: cartesianProduct, zip.
array.zip(xs, [fm], [ft], [vd]);
// xs: arrays
// fm: map function (vs, i)
// ft: till function (dones) (some)
// vd: default value
const array = require('extra-array');
var x = [1, 2, 3];
var y = [4, 5];
array.zip([x, y]);
// [ [ 1, 4 ], [ 2, 5 ] ] (shortest)
array.zip([x, y], ([a, b]) => a + b);
// [ 5, 7 ]
array.zip([x, y], null, array.some);
// [ [ 1, 4 ], [ 2, 5 ] ] (shortest)
array.zip([x, y], null, array.every, 0);
// [ [ 1, 4 ], [ 2, 5 ], [ 3, 0 ] ] (longest)
array.zip([x, y], null, array.head, 0);
// [ [ 1, 4 ], [ 2, 5 ], [ 3, 0 ] ] (first)