addFirst 方法

void addFirst(
  1. E value
)
override

在队列开头添加 value

实现

void addFirst(E value) {
  _head = (_head - 1) & (_table.length - 1);
  _table[_head] = value;
  if (_head == _tail) _grow();
  _modificationCount++;
}