void append(
E e
)

Not documented.

Source

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