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