that would be ``` suspend fun yield(value: T) { ...
# coroutines
v
that would be
Copy code
suspend fun yield(value: T) {
        setNext(value)
        setNextStep(this.continuation)
}