-
Notifications
You must be signed in to change notification settings - Fork 0
rangeEntries
Subhajit Sahu edited this page Dec 28, 2022
·
1 revision
Find smallest and largest entries.
function rangeEntries(x, fc, fm)
// x: ilists
// fc: compare function (a, b)
// fm: map function (v, k, x)
const xilists = require('extra-ilists');
var x = [['a', 'b', 'c', 'd'], [1, 2, -3, -4]];
xilists.rangeEntries(x);
// → [ [ 'd', -4 ], [ 'b', 2 ] ]
xilists.rangeEntries(x, (a, b) => Math.abs(a) - Math.abs(b));
// → [ [ 'a', 1 ], [ 'd', -4 ] ]
xilists.rangeEntries(x, null, v => Math.abs(v));
// → [ [ 'a', 1 ], [ 'd', -4 ] ]