Files
2020-03-19 09:51:01 +03:00

6 lines
88 B
Kotlin
Vendored

fun test(list: MutableList<String>) {
list.removeAll {
it.isEmpty()
}
}