<@U2SKJHSGK>, how does this work then? ``` inline ...
# announcements
c
@miha-x64, how does this work then?
Copy code
inline fun <T> T?.isNotNullAnd(condition: (T) -> Boolean): Boolean = this?.let(condition) ?: false
val numString: String? = null
numString.isNotNullAnd { BigDecimal(it) == BigDecimal.ZERO }