We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Merge values from sorted arrays.
Similar: [merge], mergeAll, [rangedMerge].
function mergeAll(xs, fc, fm) // xs: arrays // fc: compare function (a, b) // fm: map function (v, i, x)
const xsortedArray = require('extra-sorted-array'); var x = [10, 20, 20, 40, 40, 80]; var y = [20, 50, 70]; var z = [30, 60, 90]; xsortedArray.mergeAll([x, y, z]); // → [ 10, 20, 20, 20, 30, 40, 40, 50, 60, 70, 80, 90 ]