Skip to content
Snippets Groups Projects
Select Git revision
  • 6e3bbe69ee8ade74bdb2fe0528248a35c54a585c
  • zig default
  • master
  • zig-threaded
  • openat
  • chdir
  • clear
  • compll
  • v1.18.1
  • v2.2.2
  • v1.18
  • v2.2.1
  • v2.2
  • v1.17
  • v2.1.2
  • v2.1.1
  • v2.1
  • v2.0.1
  • v2.0
  • v2.0-beta3
  • v2.0-beta2
  • v2.0-beta1
  • v1.16
  • v1.15.1
  • v1.15
  • v1.14.2
  • v1.14.1
  • v1.14
28 results

configure

Blame
  • set.ts 1.79 KiB
    /**
     * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
     *
     * @author Alexander Rose <alexander.rose@weirdbyte.de>
     */
    
    // TODO remove Array.from workaround when targeting ES6
    
    /** Test if set a contains all elements of set b. */
    export function isSuperset<T>(setA: Set<T>, setB: Set<T>) {
        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<T>(setA: Set<T>, setB: Set<T>): Set<T> {
        const union = new Set(setA);
        for (const elem of Array.from(setB)) union.add(elem);
        return union;
    }
    
    export function unionMany<T>(sets: Set<T>[]) {
        if (sets.length === 0) return new Set<T>();
        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<T>(arrays: T[][]) {
        if (arrays.length === 0) return new Set<T>();
        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<T>(setA: Set<T>, setB: Set<T>): Set<T> {
        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<T>(setA: Set<T>, setB: Set<T>): Set<T> {
        const difference = new Set(setA);
        for (const elem of Array.from(setB)) difference.delete(elem);
        return difference;
    }