()
| 147 | } |
| 148 | |
| 149 | function hasActiveBoards(): boolean { |
| 150 | return nonDoneCount() > 0; |
| 151 | } |
| 152 | |
| 153 | // LRU eviction. Prefers `done` boards as victims so an active regen doesn't |
| 154 | // vanish mid-flight. Returns the evicted id, or null when the map fits. |
no test coverage detected