last 属性

E last
重写

最后一个元素。

如果 this 为空,则抛出 StateError。否则可能遍历元素并返回最后一个遇到的一个。一些可迭代对象可能有更有效的方法来查找最后一个元素(例如,列表可以直接访问最后一个元素,而无需遍历前面的元素)。

实现

E get last {
  if (_count == 0) throw IterableElementError.noElement();
  return _last!.key;
}