``` someList.removeAll { it !in anotherList by MyT...
# language-proposals
g
Copy code
someList.removeAll { it !in anotherList by MyType::isSpecialEquals } 
someList.removeAll { candidate -> anotherList.any { it.isSpecialEquals(candidate) } }