* Push item to the array. * @param item - The item which want to be pushed
(item: T)
| 15 | * @param item - The item which want to be pushed |
| 16 | */ |
| 17 | push(item: T): void { |
| 18 | this._array.push(item); |
| 19 | this._loopArrayDirty = true; |
| 20 | } |
| 21 | |
| 22 | /** |
| 23 | * Add item to the array. |
no outgoing calls