Modifier and Type | Method and Description |
---|---|
Deque<E> |
Deque.popEnd()
Create a new
Deque without the end of the exisiting Deque . |
Deque<E> |
Deque.popHead()
Create a new
Deque without the head of the existing Deque . |
Deque<E> |
Deque.pushEnd(E e)
Create a new
Deque with `e` as the end element. |
Deque<E> |
Deque.pushHead(E e)
Create a new
Deque with `e` as head element. |
Copyright © 2017. All rights reserved.