(key, value)
| 67 | return this._map.has(key); |
| 68 | } |
| 69 | hasEntry(key, value) { |
| 70 | const values = this._map.get(key); |
| 71 | if (!values) { |
| 72 | return false; |
| 73 | } |
| 74 | return values.has(value); |
| 75 | } |
| 76 | delete(key) { |
| 77 | const values = this._map.get(key); |
| 78 | if (values && this._map.delete(key)) { |