void prepend(
E e
)

Not documented.

Source

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