<@U0MMYM2A3>: I’m using this extension for `else` ...
# announcements
d
@aaverin: I’m using this extension for
else
Copy code
inline infix fun <R> R?.otherwise(block: () -> R) = if (this != null) this else block()
// x?.let { println("not null") } otherwise { println("is null") }