val m: java.util.Map[String, Int] = ...
m.foreach { entry =>
val (key, value) = entry
// do stuff with key and value
}
Is there a better way to destructure the Map.Entry? I tried the following, but it does not compile:
m.foreach { (key, value) =>
// do stuff with key and value
}
If you are willing to do a for comprehension, I like:
but assuming you want to do m.foreach, I like