(count: number)
| 5 | private tail: number; |
| 6 | |
| 7 | constructor(count: number) { |
| 8 | this.buffer = new Uint32Array(count); |
| 9 | this.bitset = new Uint8Array(count); |
| 10 | |
| 11 | this.size = 0; |
| 12 | this.tail = 0; |
| 13 | } |
| 14 | |
| 15 | push(value: number): void { |
| 16 | if (this.bitset[value]) return; |
nothing calls this directly
no outgoing calls
no test coverage detected