SequenceScope.yieldAll所在位置是kotlin.sequences.SequenceScope.yieldAll,其相关用法介绍如下。

用法一

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

产生从 iterator 到正在构建的 Iterator 的所有值并挂起,直到所有这些值都被迭代并请求下一个值。

给定迭代器返回的值序列可能是无限的。

例子:

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
val sequence = sequence {
    val start = 0
    // yielding a single value
    yield(start)
    // yielding an iterable
    yieldAll(1..5 step 2)
    // yielding an infinite sequence
    yieldAll(generateSequence(8) { it * 3 })
}

println(sequence.take(7).toList()) // [0, 1, 3, 5, 8, 24, 72]
//sampleEnd
}

输出:

[0, 1, 3, 5, 8, 24, 72]

用法二

suspend fun yieldAll(elements: Iterable<T>)

为正在构建的Iterator 生成一组值并挂起,直到所有这些值都被迭代并请求下一个值。

例子:

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
val sequence = sequence {
    val start = 0
    // yielding a single value
    yield(start)
    // yielding an iterable
    yieldAll(1..5 step 2)
    // yielding an infinite sequence
    yieldAll(generateSequence(8) { it * 3 })
}

println(sequence.take(7).toList()) // [0, 1, 3, 5, 8, 24, 72]
//sampleEnd
}

输出:

[0, 1, 3, 5, 8, 24, 72]

用法三

suspend fun yieldAll(sequence: Sequence<T>)

为正在构建的Iterator 产生潜在的无限序列值并暂停,直到所有这些值都被迭代并请求下一个值。

该序列可能是无限的。

例子:

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
val sequence = sequence {
    val start = 0
    // yielding a single value
    yield(start)
    // yielding an iterable
    yieldAll(1..5 step 2)
    // yielding an infinite sequence
    yieldAll(generateSequence(8) { it * 3 })
}

println(sequence.take(7).toList()) // [0, 1, 3, 5, 8, 24, 72]
//sampleEnd
}

输出:

[0, 1, 3, 5, 8, 24, 72]