removeLast 方法
重写
移除并返回队列的最后一个元素。
当调用此方法时,队列不得为空。
实现
E removeLast() {
if (_head == _tail) throw IterableElementError.noElement();
_modificationCount++;
_tail = (_tail - 1) & (_table.length - 1);
E result = _table[_tail] as E;
_table[_tail] = null;
return result;
}