void prepend(E e)

Source

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