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