(keyMap: HashMap<A, unknown>)
| 59 | |
| 60 | /** @internal */ |
| 61 | export const makeImpl = <A>(keyMap: HashMap<A, unknown>): HashSetImpl<A> => { |
| 62 | const set = Object.create(HashSetProto) |
| 63 | set._keyMap = keyMap |
| 64 | return set |
| 65 | } |
| 66 | |
| 67 | /** @internal */ |
| 68 | export const isHashSet: { |
no test coverage detected