* Get all values (virtual derived state)
()
| 408 | * Get all values (virtual derived state) |
| 409 | */ |
| 410 | public *values(): IterableIterator<TOutput> { |
| 411 | for (const key of this.keys()) { |
| 412 | const value = this.get(key) |
| 413 | if (value !== undefined) { |
| 414 | yield value |
| 415 | } |
| 416 | } |
| 417 | } |
| 418 | |
| 419 | /** |
| 420 | * Get all entries (virtual derived state) |
no test coverage detected