```destination.filterKeys { key -> key in (...
# android
b
Copy code
destination.filterKeys { key ->
    key in (list1 + list2 + list3)
}
v
That's not the same logic, this is like ORing the conditions, question was about ANDing.
b
ah, yes.