iterator

abstract operator override fun iterator(): Iterator<T>(source)

获取集合的迭代器。

注意:本函数会使用构建时提供的 productScope 进行转化操作, 且会使用 runInNoScopeBlocking 来进行挂起函数的同步转化。

Return

返回 Iterator 对象。


abstract fun iterator(produceScope: CoroutineScope): Iterator<T>(source)

获取集合的迭代器。

注意:本函数会使用 produceScope 进行转化操作, 且会使用 runInNoScopeBlocking 来进行挂起函数的同步转化。

Return

返回 Iterator 对象。