Is there a short hand for this? ``` foo.filter { ...
# getting-started
m
Is there a short hand for this?
Copy code
foo.filter {
  !bar.contains(it)
}
Basically, all the items in Set A that do not appear in Set B. I was pretty sure there was a functional extension for this, but I can't seem to find it.