append method

void append (E e)

Appends the given e as entry just after this entry.

Implementation

void append(E e) {
  DoubleLinkedQueueEntry<E>(e)._link(this, _nextLink);
}