Is there a reason Kotlin 1.2.30 brought `suspend` ...
# coroutines
l
Is there a reason Kotlin 1.2.30 brought
suspend
lambda "creator" without parameters, but didn't bring one with a single parameter ? I can easily write one:
inline fun <T, R> suspend(noinline block: suspend (T) -> R): suspend (T) -> R = block
e
Use case?