Try
map.values.exists(_ == "")
Edit: I think the above is the clearest, but I cannot resist showing the other two.
map.exists(_._2 == "")
more compact, but you must remember that _2 is the value when you iterate over a map.
map.values.exists(""==)
, _ == "" "".equals _ ""== . ( - , equals , , ? , () .)