* The index of the item. * @param item - The item which want to get the index * @returns Index of the item
(item: T)
| 55 | * @returns Index of the item |
| 56 | */ |
| 57 | indexOf(item: T): number { |
| 58 | return this._array.indexOf(item); |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * Get the array. |
no outgoing calls
no test coverage detected