()
| 87 | } |
| 88 | |
| 89 | peek(): T | undefined { |
| 90 | if (this._length === 0) { |
| 91 | return undefined |
| 92 | } |
| 93 | return this._items[this._head] |
| 94 | } |
| 95 | |
| 96 | at(index: number): T | undefined { |
| 97 | if (index >= this._length || index < -this.length) { |
no outgoing calls
no test coverage detected