I’d make kind of `filterNotNull()` function, but w...
# language-proposals
o
I’d make kind of
filterNotNull()
function, but with
()->Unit
function to trigger if null value(s) are encountered.
listOf(…).map { it?.toString() }.skipNulls { println(“warning”) }.forEach {…}