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