最佳答案
这两个接口都只定义一个方法
public operator fun iterator(): Iterator<T>
文档说 Sequence
是懒惰的,但是 Iterable
不也是懒惰的吗(除非有 Collection
的支持) ?