why does `listOf(true, null, false, true).filterNo...
# stdlib
n
why does
listOf(true, null, false, true).filterNotNull().map { !it }
work but
listOf(true, null, false, true).mapNotNull { !it }
complains about
Boolean?
Compiler should be smart enough to understand the lambda values are
Boolean
, no?