-
Notifications
You must be signed in to change notification settings - Fork 1
unionKeys
Subhajit Sahu edited this page Jun 12, 2020
·
12 revisions
Gives keys present in any map. 🏃 [:vhs:] 📦 🌔 📒
Similar: unionKeys, intersectionKeys.
map.unionKeys(...xs);
// xs: maps
const map = require('extra-map');
var x = new Map([['a', 1], ['b', 2], ['c', 3], ['d', 4]]);
var y = new Map([['b', 20], ['c', 30], ['e', 50]]);
map.unionKeys(x, y);
// Set(5) { 'a', 'b', 'c', 'd', 'e' }