@extra-array/range
TypeScript icon, indicating that this package has built-in type declarations

2.10.19 • Public • Published

Finds smallest and largest entries. 📦 😺 🏃 📼 🌔 📜 📰 📘

Similar: min, max, range.

This is part of package extra-array.


array.range(x, [fc], [fm]);
// x:  an array
// fc: compare function (a, b)
// fm: map function (v, i, x)
// → [smallest, largest]
const array = require("extra-array");

var x = [1, 2, -3, -4];
array.range(x);
// [ [ 3, -4 ], [ 1, 2 ] ]

array.range(x, (a, b) => Math.abs(a) - Math.abs(b));
// [ [ 0, 1 ], [ 3, -4 ] ]

array.range(x, null, v => Math.abs(v));
// [ [ 0, 1 ], [ 3, -4 ] ]


References

/@extra-array/range/

    Package Sidebar

    Install

    npm i @extra-array/range

    Weekly Downloads

    8

    Version

    2.10.19

    License

    MIT

    Unpacked Size

    4.95 kB

    Total Files

    8

    Last publish

    Collaborators

    • wolfram77