When I look a the Map.map
scaladoc, I can see
map[B](f: (A) ⇒ B): Map[B]
But the simple following code doesn't return a Map
scala> Map("answer" -> 42).map { case(k, v) => v }
res40: scala.collection.immutable.Iterable[Int] = List(42)
Can you explain ?