-
Notifications
You must be signed in to change notification settings - Fork 1
group
wolfram77 edited this page Mar 27, 2020
·
26 revisions
Keeps similar values together and in order.
iterable.group(x, [fn]);
// x: an iterable
// fn: compare function (a, b)
const iterable = require('extra-iterable');
var x = [1, 2, 2, -2, -2, 4];
iterable.group(x);
// [[1], [2, 2], [-2, -2], [4]]
iterable.group(x, (a, b) => Math.abs(a) - Math.abs(b));
// [[1], [2, 2, -2, -2], [4]]