()
| 2392 | return this._length === this._maxLength; |
| 2393 | } |
| 2394 | pop() { |
| 2395 | return this._array[this._getCyclicIndex(this._length-- - 1)]; |
| 2396 | } |
| 2397 | splice(e3, t3, ...i3) { |
| 2398 | if (t3) { |
| 2399 | for (let i4 = e3; i4 < this._length - t3; i4++) this._array[this._getCyclicIndex(i4)] = this._array[this._getCyclicIndex(i4 + t3)]; |
no test coverage detected