append method
Appends the given e
as entry just after this entry.
Implementation
void append(E e) {
new DoubleLinkedQueueEntry<E>(e)._link(this, _nextLink);
}
Appends the given e
as entry just after this entry.
void append(E e) {
new DoubleLinkedQueueEntry<E>(e)._link(this, _nextLink);
}