SelectBuilder
Scope for select invocation.
Functions
Link copied to clipboard
Registers a clause in this select expression without additional parameters that does not select any value.
abstract operator fun <Q> SelectClause1<Q>.invoke(block: suspend (Q) -> R)
Content copied to clipboard
Registers clause in this select expression without additional parameters that selects value of type Q.
open operator fun <P, Q> SelectClause2<P?, Q>.invoke(block: suspend (Q) -> R)
Content copied to clipboard
Registers clause in this select expression with additional nullable parameter of type P with the null
value for this parameter that selects value of type Q.