@returns {boolean}
()
| 829 | next = null; |
| 830 | /** @returns {boolean} */ |
| 831 | isEmpty() { |
| 832 | return this.top === this.bottom; |
| 833 | } |
| 834 | /** @returns {boolean} */ |
| 835 | isFull() { |
| 836 | return (this.top + 1 & kMask) === this.bottom; |
no outgoing calls
no test coverage detected