prepend method - DoubleLinkedQueueEntry class - dart:collection library (original) (raw)

description

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);
}