()
| 2389 | return this._startIndex = ++this._startIndex % this._maxLength, this.onTrimEmitter.fire(1), this._array[this._getCyclicIndex(this._length - 1)]; |
| 2390 | } |
| 2391 | get isFull() { |
| 2392 | return this._length === this._maxLength; |
| 2393 | } |
| 2394 | pop() { |
| 2395 | return this._array[this._getCyclicIndex(this._length-- - 1)]; |
| 2396 | } |
nothing calls this directly
no outgoing calls
no test coverage detected