Adds value at the beginning of the queue.
value
void addFirst(E value) { _sentinel._append(value, this); _elementCount++; }