prepend 方法

void prepend(
  1. E e
)

在当前条目前方插入给定的 e 作为条目。

实现

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