(value: T)
| 69 | } |
| 70 | |
| 71 | public fastRemove (value: T): void { |
| 72 | const index = this.array.indexOf(value); |
| 73 | if (index >= 0) { |
| 74 | this.fastRemoveAt(index); |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | public fastRemoveAt (i: number): void { |
| 79 | const array = this.array; |
nothing calls this directly
no test coverage detected