prepend method Null safety

void prepend (
  1. E e
)

Prepends the given e as entry just before this entry.

Implementation

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