(self: HashSet<V>, value: V)
| 82 | |
| 83 | /** @internal */ |
| 84 | export const has = <V>(self: HashSet<V>, value: V): boolean => HashMap.has(keyMap(self), value) |
| 85 | |
| 86 | /** @internal */ |
| 87 | export const add = <V>(self: HashSet<V>, value: V): HashSet<V> => { |
no test coverage detected