UNPKG

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.

17 lines 705 B
/** * @public * Used with maps that store sets. Where a set exists for a given key the value will be added to that set, otherwise a new set will be created containing the value. * @param map - The `Map` to check. May be modified. * @param key - The key to lookup in `map`. * @param value - The value to add. * * @remarks * See {@link (mapAddToSet: 1)}. */ export declare function mapAddToSet<TKey, TValue>(map: Map<TKey, Set<TValue>>, key: TKey, value: TValue): void; /** * @public * {@inheritDoc (mapAddToSet: 1)} */ export declare function mapAddToSet<TKey extends object, TValue>(map: WeakMap<TKey, Set<TValue>>, key: TKey, value: TValue): void; //# sourceMappingURL=map-add-to-set.d.ts.map