单个属性

File single
重写

检查这个可迭代的集合是否只有一个元素,并返回该元素。

如果 this 为空或包含多个元素,则抛出 StateError。此操作不会迭代到第二个元素。

实现

File get single {
  int len = this.length;
  if (len == 1) {
    return JS('File', '#[0]', this);
  }
  if (len == 0) throw new StateError("No elements");
  throw new StateError("More than one element");
}