prepend method - DoubleLinkedQueueEntry class - dart:collection library (original) (raw)
void prepend(
- E e )
Prepends the given e
as entry just before this entry.
Implementation
void prepend(E e) {
DoubleLinkedQueueEntry<E>(e)._link(_previousLink, this);
}