SequenceScope.yield所在位置是kotlin.sequences.SequenceScope.yield,其相關用法介紹如下。

用法:

abstract suspend fun yield(value: 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]

例子:

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
fun fibonacci() = sequence {
    var terms = Pair(0, 1)

    // this sequence is infinite
    while (true) {
        yield(terms.first)
        terms = Pair(terms.second, terms.first + terms.second)
    }
}

println(fibonacci().take(10).toList()) // [0, 1, 1, 2, 3, 5, 8, 13, 21, 34]
//sampleEnd
}

輸出:

[0, 1, 1, 2, 3, 5, 8, 13, 21, 34]