Dart SDK
dart:collection
DoubleLinkedQueueEntry
prepend
prepend
Dart SDK
dart:collection
DoubleLinkedQueueEntry
prepend
method
prepend
Source
Dart SDK
dart:collection
DoubleLinkedQueueEntry
Properties
element
hashCode
runtimeType
Constructors
DoubleLinkedQueueEntry
Operators
operator ==
Methods
append
nextEntry
noSuchMethod
prepend
previousEntry
remove
toString
void
prepend
(
E
e
)
Not documented.
Source
void prepend(E e) { new DoubleLinkedQueueEntry<E>(e)._link(_previousLink, this); }