void addLast(E value)

Adds value at the end of the queue.

Source

void addLast(E value) {
  _sentinel._prepend(value);
  _elementCount++;
}