for a `foo: Boolean?`, `foo ?: false` is equivalen...
# intellij
y
for a
foo: Boolean?
,
foo ?: false
is equivalent to
foo == true
, and the latter is preferred according to the Kotlin style guide