whileSelect 
  inline suspend fun whileSelect(crossinline builder: SelectBuilder<Boolean>.() -> Unit)
Content copied to clipboard
Loops while select expression returns true.
The statement of the form:
whileSelect {
    /*body*/
}Content copied to clipboard
is a shortcut for:
while(select<Boolean> {
   /*body*/
}) {}
**Note: This is an experimental api.** It may be replaced with a higher-performance DSL for selection from loops.Content copied to clipboard