第一个属性
重写
第一个元素。
如果 this
为空,则抛出 StateError。否则返回迭代顺序中的第一个元素,相当于 this.elementAt(0)
。
实现
E get first {
if (_count == 0) throw IterableElementError.noElement();
return _first!.key;
}
第一个元素。
如果 this
为空,则抛出 StateError。否则返回迭代顺序中的第一个元素,相当于 this.elementAt(0)
。
E get first {
if (_count == 0) throw IterableElementError.noElement();
return _first!.key;
}