E first

Source

E get first {
  if (_head == _tail) throw IterableElementError.noElement();
  return _table[_head];
}