(callbackfn: (value: T, key: Uri, map: Map<Uri, T>) => void, thisArg?: any)
| 23 | this._values.clear(); |
| 24 | } |
| 25 | forEach(callbackfn: (value: T, key: Uri, map: Map<Uri, T>) => void, thisArg?: any): void { |
| 26 | this._keys.forEach((v, k) => { |
| 27 | callbackfn(this._values.get(k)!, v, this); |
| 28 | }); |
| 29 | } |
| 30 | values(): MapIterator<T> { |
| 31 | return this._values.values(); |
| 32 | } |
no test coverage detected