(callback)
| 5418 | return this._map[key] !== undefined; |
| 5419 | } |
| 5420 | forEach(callback) { |
| 5421 | for (const key in this._map) { |
| 5422 | callback(key, this.get(key)); |
| 5423 | } |
| 5424 | } |
| 5425 | static get empty() { |
| 5426 | const emptyDict = new Dict(null); |
| 5427 | emptyDict.set = (key, value) => { |
no test coverage detected