* Get all entries (virtual derived state)
()
| 420 | * Get all entries (virtual derived state) |
| 421 | */ |
| 422 | public *entries(): IterableIterator<[TKey, TOutput]> { |
| 423 | for (const key of this.keys()) { |
| 424 | const value = this.get(key) |
| 425 | if (value !== undefined) { |
| 426 | yield [key, value] |
| 427 | } |
| 428 | } |
| 429 | } |
| 430 | |
| 431 | /** |
| 432 | * Get all entries (virtual derived state) |
no test coverage detected