Before:
set.exists(x => x == "a") set.forall(x => x != "a")
After:
set.contains("a") !set.contains("a")