Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 255 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 255 Bytes

buildSequence()

Equivalent to:

fun <T> sequence(
    block: suspend SequenceScope<T>.() -> Unit
): Sequence<T>

For buildSequence we have:

fun <T> buildSequence(
    block: suspend Yieldable<T>.() -> Unit
): Sequence<T>