Checks whether the circular deque is full or not.
()
| 143 | |
| 144 | /** Checks whether the circular deque is full or not. */ |
| 145 | public boolean isFull() { |
| 146 | return (this.size == this.capacity); |
| 147 | } |
| 148 | } |
nothing calls this directly
no outgoing calls
no test coverage detected