* Get all values (virtual derived state)
()
| 506 | * Get all values (virtual derived state) |
| 507 | */ |
| 508 | public *values(): IterableIterator<WithVirtualProps<TOutput, TKey>> { |
| 509 | for (const key of this._state.keys()) { |
| 510 | const value = this.get(key) |
| 511 | if (value !== undefined) { |
| 512 | yield value |
| 513 | } |
| 514 | } |
| 515 | } |
| 516 | |
| 517 | /** |
| 518 | * Get all entries (virtual derived state) |
no test coverage detected