kotlin.coroutines.experimental.SequenceBuilder.yieldAll

yieldAll

abstract suspend fun yieldAll(iterator: Iterator<T>)

Yields all values from the iterator to the Iterator being built.

The sequence of values returned by the given iterator can be potentially infinite.

suspend fun yieldAll(elements: Iterable<T>)

Yields a collections of values to the <