You can do `val s = buildSequence { while(true) yi...
# getting-started
v
You can do
val s = buildSequence { while(true) yieldAll(list) }
i
That would just yield that list once. Surround
yieldAll
with
while (true)
.
v
Thanks, fixed
f
Sweet, that works.... Thanks @voddan and @ilya.gorbunov !