suspend fun whileSelect( builder: SelectBuilder<Boolean>.() -> Unit): Unit
Platform and version requirements: JVM
Loops while select expression returns true.
true
The statement of the form:
whileSelect { /*body*/ }
is a shortcut for:
while(select<Boolean> { /*body*/ }) {}