blob: 8358c196c8db5ea2488abd966f21306688a50c1f [file] [log] [blame]
/*
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package kotlinx.coroutines.experimental.selects
/**
* Loops while [select] expression returns `true`.
*
* The statement of the form:
*
* ```
* whileSelect {
* /*body*/
* }
* ```
*
* is a shortcut for:
*
* ```
* while(select<Boolean> {
* /*body*/
* }) {}
*/
suspend fun whileSelect(builder: SelectBuilder<Boolean>.() -> Unit) {
while(select<Boolean>(builder)) {}
}