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.

18 lines 800 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. * @returns true - If the value was added. * * @remarks * See {@link (mapReportingAddToSet: 1)}. */ export declare function mapReportingAddToSet<TKey, TValue>(map: Map<TKey, Set<TValue>>, key: TKey, value: TValue): boolean; /** * @public * {@inheritDoc (mapReportingAddToSet: 1)} */ export declare function mapReportingAddToSet<TKey extends object, TValue>(map: WeakMap<TKey, Set<TValue>>, key: TKey, value: TValue): boolean; //# sourceMappingURL=map-reporting-add-to-set.d.ts.map