Pushes the element to the deque(at the head of the deque), just same as addFirst(E). @param e the element @throws IllegalStateException if it can not add now due to size limit @throws ClassCastException if the class of element can not be added into this deque @thr
(E e)
| 236 | * if the element can not be added due to some property. |
| 237 | */ |
| 238 | void push(E e); |
| 239 | |
| 240 | /** |
| 241 | * Pops the head element of the deque, just same as removeFirst(). |
no outgoing calls