I guess you would have to define it yourself: ```i...
# stdlib
a
I guess you would have to define it yourself:
Copy code
inline fun <T> T.alsoIfNull(block: () -> Unit): T {
    if (this == null) {
        block()
    }
    return this
}
👍 1