Remove and return the element at the front of the deque, if it exists. @return removed element, otherwise null.
()
| 47 | * @return removed element, otherwise {@code null}. |
| 48 | */ |
| 49 | T removeFirst(); |
| 50 | |
| 51 | /** |
| 52 | * Remove and return the element at the back of the deque, if it exists. |
nothing calls this directly
no outgoing calls
no test coverage detected