@extra-array/selection-sort-update.min
TypeScript icon, indicating that this package has built-in type declarations

2.9.60 • Public • Published

Arranges values in an order. 🏃 📼 📦 🌔 📒

Similar: sort, merge.
This is part of package extra-array.

This is browserified, minified version of @extra-array/selection-sort-update.
It is exported as global variable array_selectionSort$.
CDN: unpkg, jsDelivr.

array.selectionSort$(x, [fc], [fm]);
// x:  an array (updated)
// fc: compare function (a, b)
// fm: map function (v, i, x)
// --> x
const array = require('extra-array');

var x = [-2, -3, 1, 4];
array.selectionSort$(x);
// [ -3, -2, 1, 4 ] (compares numbers)

x;
// [ -3, -2, 1, 4 ]

var x = [-2, -3, 1, 4];
array.selectionSort$(x, (a, b) => Math.abs(a) - Math.abs(b));
// [ 1, -2, -3, 4 ]

var x = [-2, -3, 1, 4];
array.selectionSort$(x, null, v => Math.abs(v));
// [ 1, -2, -3, 4 ]

references

Package Sidebar

Install

npm i @extra-array/selection-sort-update.min

Weekly Downloads

0

Version

2.9.60

License

MIT

Unpacked Size

13.2 kB

Total Files

19

Last publish

Collaborators

  • wolfram77