`fun collectionOfNullablesToNullCollection(): Coll...
# language-proposals
m
fun collectionOfNullablesToNullCollection(): Collection<String>? = listOf<String?>("str", null).map { it ?: return null }
👍 2