Iterable<E>.empty 构造函数

const Iterable<E>.empty()

创建一个空的迭代器。

空的迭代器没有任何元素,迭代它总是立即停止。

实现

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