yieldAll

Common
JVM
JS
Native
1.0
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.

Common
JVM
JS
Native
1.0
suspend fun yieldAll(elements: Iterable<T>)

Yields a collections of values to the Iterator being built.

Common
JVM
JS
Native
1.0
suspend fun yieldAll(sequence: Sequence<T>)

Yields potentially infinite sequence of values to the Iterator being built.

The sequence can be potentially infinite.