| 427 | * safety net for echo filtering and race-condition dedup. |
| 428 | */ |
| 429 | export class BoundedUUIDSet { |
| 430 | private readonly capacity: number |
| 431 | private readonly ring: (string | undefined)[] |
| 432 | private readonly set = new Set<string>() |
nothing calls this directly
no outgoing calls
no test coverage detected