UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

9 lines 259 B
/** * Returns common elements between two sets * @template T * @returns Set<T> * @param {Set<T>} a * @param {Set<T>} b */ export function compute_set_intersection<T>(a: Set<T>, b: Set<T>): Set<any>; //# sourceMappingURL=compute_set_intersection.d.ts.map