* Remove item from the array. * @param index - The index of the array
(index: number)
| 34 | * @param index - The index of the array |
| 35 | */ |
| 36 | removeByIndex(index: number): void { |
| 37 | this._array.splice(index, 1); |
| 38 | this._loopArrayDirty = true; |
| 39 | } |
| 40 | |
| 41 | /** |
| 42 | * Remove item from array that pass the specified comparison function. |
no outgoing calls
no test coverage detected