UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

9 lines 258 B
/** * Remove all elements of B from A. * This operation mutates A * @template T * @param {Set<T>} from * @param {Set<T>} to_be_removed */ export function set_remove<T>(from: Set<T>, to_be_removed: Set<T>): void; //# sourceMappingURL=set_remove.d.ts.map