(callback: (value: V, key: K, map: Map<K, V>) => any)
| 75 | } |
| 76 | |
| 77 | public forEach(callback: (value: V, key: K, map: Map<K, V>) => any): void { |
| 78 | for (const key of this.keys()) { |
| 79 | callback(this.items.get(key), key, this); |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | public get(key: K): V | undefined { |
| 84 | return this.items.get(key); |
no test coverage detected