/** * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ // TODO remove Array.from workaround when targeting ES6 /** Test if set a contains all elements of set b. */ export function isSuperset(setA: Set, setB: Set) { for (const elm of Array.from(setB)) { if (!setA.has(elm)) return false; } return true; } /** Create set containing elements of both set a and set b. */ export function union(setA: Set, setB: Set): Set { const union = new Set(setA); for (const elem of Array.from(setB)) union.add(elem); return union; } export function unionMany(sets: Set[]) { if (sets.length === 0) return new Set(); if (sets.length === 1) return sets[0]; const union = new Set(sets[0]); for (let i = 1; i < sets.length; i++) { for (const elem of Array.from(sets[i])) union.add(elem); } return union; } export function unionManyArrays(arrays: T[][]) { if (arrays.length === 0) return new Set(); const union = new Set(arrays[0]); for (let i = 1; i < arrays.length; i++) { for (const elem of arrays[i]) union.add(elem); } return union; } /** Create set containing elements of set a that are also in set b. */ export function intersection(setA: Set, setB: Set): Set { const intersection = new Set(); for (const elem of Array.from(setB)) { if (setA.has(elem)) intersection.add(elem); } return intersection; } /** Create set containing elements of set a that are not in set b. */ export function difference(setA: Set, setB: Set): Set { const difference = new Set(setA); for (const elem of Array.from(setB)) difference.delete(elem); return difference; }