p5-analysis
Version:
API to find, create, and analyze p5.js sketch files.
5 lines (4 loc) • 309 B
TypeScript
/** Modifies target by removing the items in other. */
export declare function removeSetElements<T>(target: Set<T>, other: ReadonlySet<T>): Set<T>;
export declare function setDifference<T>(target: Set<T>, other: ReadonlySet<T>): Set<T>;
export declare function setUnion<T>(...sets: ReadonlySet<T>[]): Set<T>;