mg6maciej
fun collectionOfNullablesToNullCollection(): Collection<String>? = listOf<String?>("str", null).map { it ?: return null }