(keyMap: HashMap.HashMap<V, boolean>)
| 51 | } |
| 52 | |
| 53 | const makeImpl = <V>(keyMap: HashMap.HashMap<V, boolean>): HashSet<V> => { |
| 54 | const set = Object.create(HashSetProto) |
| 55 | set[HashSetTypeId] = HashSetTypeId |
| 56 | set.keyMap = keyMap |
| 57 | return set |
| 58 | } |
| 59 | |
| 60 | /** @internal */ |
| 61 | export const isHashSet = (u: unknown): u is HashSet<unknown> => hasProperty(u, HashSetTypeId) |
no outgoing calls
no test coverage detected
searching dependent graphs…