(i: number)
| 76 | } |
| 77 | |
| 78 | public fastRemoveAt (i: number): void { |
| 79 | const array = this.array; |
| 80 | array[i] = array[array.length - 1]; |
| 81 | --array.length; |
| 82 | |
| 83 | if (i <= this.i) { |
| 84 | --this.i; |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | public push (item: T): void { |
| 89 | this.array.push(item); |
no outgoing calls
no test coverage detected