No, since `a?.isBlank()` can be null. ``` val a: S...
# random
d
No, since
a?.isBlank()
can be null.
Copy code
val a: String? = null
val b = a?.isBlank() ?: false // no allocation
We might be able to avoid that boxing. Do you find it more natural to write
nullableBoolean == true
instead of
nullableBoolean ?: false
?