5 lines
156 B
Plaintext
Vendored
5 lines
156 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
fun foo(c : Collection<String>){
|
|
val predicate: (String) -> Boolean = { it.length > 1 }
|
|
c.filterTo(ArrayList<String>(), predicate)
|
|
} |