Thank you, that’s what I need! `fun <T> Muta...
# getting-started
m
Thank you, that’s what I need!
fun <T> MutableList<T?>.removeNulls() = apply { removeAll { it == null} } as MutableList<T>
👍 1