arekolek
inline fun <T> T.alsoIfNull(block: () -> Unit): T { if (this == null) { block() } return this }