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

2.7.8 • Public • Published

Gives values present in any array. 🏃 📼 📦 🌔

Alternatives: compare, compare-update, map, map-update.
This is part of package extra-array.

array.unionOn$(x, y, [fn], [ths]);
// x:   an array (updated)
// y:   another array
// fn:  map function (v, i, x)
// ths: this argument
// --> x
const array = require('extra-array');

var x = [1, 2, 3, 4];
array.unionOn$(x, [2, 3, 5]);
// [1, 2, 3, 4, 5]

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

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

references

/@extra-array/union-on-update/

    Package Sidebar

    Install

    npm i @extra-array/union-on-update

    Weekly Downloads

    0

    Version

    2.7.8

    License

    MIT

    Unpacked Size

    9.9 kB

    Total Files

    24

    Last publish

    Collaborators

    • wolfram77