* Add item to the array. * @param index - The index of the array * @param item - The item which want to be added
(index: number, item: T)
| 25 | * @param item - The item which want to be added |
| 26 | */ |
| 27 | add(index: number, item: T): void { |
| 28 | this._array.splice(index, 0, item); |
| 29 | this._loopArrayDirty = true; |
| 30 | } |
| 31 | |
| 32 | /** |
| 33 | * Remove item from the array. |
no outgoing calls
no test coverage detected