Prepends the given e as entry just before this entry.
e
void prepend(E e) { new DoubleLinkedQueueEntry<E>(e)._link(_previousLink, this); }