interleaveSequences

fun <T> interleaveSequences(vararg iterables: Sequence<T>): Sequence<T>

Same as interleave, taking the Sequences to interleave as varargs.


Same as interleave, where both the outer collection and each of the interleaved elements are Sequences.


Same as interleave, where each of the interleaved elements is a Sequence rather than an Iterable.