what's your opinion on adding a `fun <T : Any&g...
# stdlib
k
what's your opinion on adding a
fun <T : Any> listOfNotNulls(vararg items: T?) = items.filterNotNull()
method that combines
listOf
and
filterNotNull
?