@extra-map/is-disjoint

Checks if maps have no common keys.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
@extra-map/is-disjoint
322.2.152 years ago3 years agoMinified + gzip package size for @extra-map/is-disjoint in KB

Readme

Checks if maps have no common keys. :package: :smileycat: :running: :vhs: :moon: :scroll: :newspaper: :bluebook:
Similar: union, intersection, difference, symmetricDifference, isDisjoint.

This is part of package extra-map.



map.isDisjoint(x, y);
// x: a map
// y: another map

const map = require("extra-map");

var x = new Map([["a", 1], ["b", 2], ["c", 3]]);
var y = new Map([["c", 3], ["d", 4]]);
map.isDisjoint(x, y);
// false

var y = new Map([["d", 4]]);
map.isDisjoint(x, y);
// true



References