-
Notifications
You must be signed in to change notification settings - Fork 0
intersection
Subhajit Sahu edited this page Jun 17, 2020
·
15 revisions
Gives entries present in both entries. 🏃 📼 📦 🌔 📒
Alternatives: intersection, intersection$.
Similar: union, intersection, difference, symmetricDifference, isDisjoint.
entries.intersection(x, y, [fn]);
// x: entries
// y: another entries
// fn: combine function (a, b)
const entries = require('extra-entries');
var x = new Map([['a', 1], ['b', 2], ['c', 3], ['d', 4]]);
var y = new Map([['b', 20], ['c', 30], ['e', 50]]);
map.intersection(x, y);
// Map(2) { 'b' => 2, 'c' => 3 }
map.intersection(x, y, (a, b) => b);
// Map(2) { 'b' => 20, 'c' => 30 }