Hi, are there suspendable alternatives to the stan...
# announcements
n
Hi, are there suspendable alternatives to the standard functions ( let it run also apply with )? Something like
Copy code
suspend fun <T, R> T.let(block: suspend (T) -> R): R {
    return block(this)
}
e
They are inline, so they are automatically suspendable without having to have a special version.
👍 5