is there a single-line way to do the same as the f...
# announcements
p
is there a single-line way to do the same as the following code and NOT creating 2 lists?
Copy code
val mutableList = ArrayList<T>()
biggerList.filterTo(mutableList ) { it.x == myDesiredFilter }