Method Summary |
|
void | addFirst(boolean v) Adds an element to the beginning of this deque. |
void | addLast(boolean v) Adds an element to the end of this deque. |
boolean | getFirst() Returns the first element of this deque. |
boolean | getLast() Returns the last element of this deque. |
boolean | removeFirst() Removes the first element of this deque. |
boolean | removeLast() Removes the last element of this deque. |