single property

E single

Implementation

E get single {
  if (_count == 0) throw IterableElementError.noElement();
  if (_count > 1) throw IterableElementError.tooMany();
  return _root.key;
}