Iterable<E>.empty 构造函数

const Iterable<E>.empty()

创建一个空的可迭代对象。

空的可迭代对象没有元素,迭代它总是立即停止。

实现

const factory Iterable.empty() = EmptyIterable<E>;