(self: HashSet<V>)
| 62 | |
| 63 | /** @internal */ |
| 64 | export const keyMap = <V>(self: HashSet<V>): HashMap.HashMap<V, boolean> => (self as any).keyMap |
| 65 | |
| 66 | /** @internal */ |
| 67 | export const empty = <V = never>(): HashSet<V> => makeImpl(HashMap.empty<V, boolean>()) |
no outgoing calls
no test coverage detected
searching dependent graphs…