Checks whether the circular deque is empty or not.
()
| 138 | |
| 139 | /** Checks whether the circular deque is empty or not. */ |
| 140 | public boolean isEmpty() { |
| 141 | return (this.size == 0); |
| 142 | } |
| 143 | |
| 144 | /** Checks whether the circular deque is full or not. */ |
| 145 | public boolean isFull() { |
no outgoing calls
no test coverage detected