(keyMap: MutableHashMap.MutableHashMap<V, boolean>)
| 112 | } |
| 113 | |
| 114 | const fromHashMap = <V>(keyMap: MutableHashMap.MutableHashMap<V, boolean>): MutableHashSet<V> => { |
| 115 | const set = Object.create(MutableHashSetProto) |
| 116 | set.keyMap = keyMap |
| 117 | return set |
| 118 | } |
| 119 | |
| 120 | /** |
| 121 | * Creates an empty MutableHashSet. |
no outgoing calls
no test coverage detected