last property

E last

Implementation

E get last {
  if (_head == _tail) throw IterableElementError.noElement();
  return _table[(_tail - 1) & (_table.length - 1)];
}