* Get all entries (virtual derived state)
()
| 518 | * Get all entries (virtual derived state) |
| 519 | */ |
| 520 | public *entries(): IterableIterator<[TKey, WithVirtualProps<TOutput, TKey>]> { |
| 521 | for (const key of this._state.keys()) { |
| 522 | const value = this.get(key) |
| 523 | if (value !== undefined) { |
| 524 | yield [key, value] |
| 525 | } |
| 526 | } |
| 527 | } |
| 528 | |
| 529 | /** |
| 530 | * Get all entries (virtual derived state) |
no test coverage detected