-
Notifications
You must be signed in to change notification settings - Fork 1
hasSubset
Subhajit Sahu edited this page Feb 3, 2021
·
11 revisions
Checks if map has a subset. 🏃 📼 📦 🌔 📒
Alternatives: has, hasValue, hasEntry, hasSubset, hasPath.
Similar: subset, subsets, hasSubset.
map.hasSubset(x, y, [fc], [fm]);
// x: a map
// y: subset?
// fc: compare function (a, b)
// fm: map function (v, k, x)
const map = require("extra-map");
var x = new Map([["a", 1], ["b", 2], ["c", 3], ["d", 4]]);
var y = new Map([["b", 2], ["d", 4]]);
map.hasSubset(x, y);
// true
var y = new Map([["b", -2], ["d", -4]]);
map.hasSubset(x, y);
// false
map.hasSubset(x, y, (a, b) => Math.abs(a) - Math.abs(b));
// true
map.hasSubset(x, y, null, v => Math.abs(v));
// true