first property

E first

Implementation

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