rc-js-util
Version:
A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.
19 lines • 795 B
TypeScript
import { ISetLike } from "../../typescript/i-set-like.js";
/**
* @public
* Used with maps that store sets. Where a set exists for a given key the value will be removed from that set.
* @param map - The `Map` to check. May be modified.
* @param key - The key to lookup in `map`.
* @param value - The value to remove.
* @returns true - If value was removed.
*
* @remarks
* See {@link (mapDeleteFromSet: 1)}.
*/
export declare function mapDeleteFromSet<TKey, TValue>(map: Map<TKey, ISetLike<TValue>>, key: TKey, value: TValue): boolean;
/**
* @public
* {@inheritDoc (mapDeleteFromSet: 1)}
*/
export declare function mapDeleteFromSet<TKey extends object, TValue>(map: WeakMap<TKey, ISetLike<TValue>>, key: TKey, value: TValue): boolean;
//# sourceMappingURL=map-delete-from-set.d.ts.map