DoubleLinkedQueueEntry<E> class

An entry in a doubly linked list. It contains a pointer to the next entry, the previous entry, and the boxed element.

An entry in a doubly linked list. It contains a pointer to the next entry, the previous entry, and the boxed element.

Constructors

DoubleLinkedQueueEntry(E element)

Instance Properties

element E
read / write

Instance Methods

append(E e) → void
prepend(E e) → void
remove() → E
previousEntry() → DoubleLinkedQueueEntry<E>
nextEntry() → DoubleLinkedQueueEntry<E>