Scala – How to convert a mutable HashMap into an immutable equivalent in Scala

immutabilitymutablescalascala-collections

Inside a function of mine I construct a result set by filling a new mutable HashMap with data (if there is a better way – I'd appreciate comments). Then I'd like to return the result set as an immutable HashMap. How to derive an immutable from a mutable?

Best Answer

Discussion about returning immutable.Map vs. immutable.HashMap notwithstanding, what about simply using the toMap method:

scala> val m = collection.mutable.HashMap(1 -> 2, 3 -> 4)
m: scala.collection.mutable.HashMap[Int,Int] = Map(3 -> 4, 1 -> 2)

scala> m.toMap
res22: scala.collection.immutable.Map[Int,Int] = Map(3 -> 4, 1 -> 2)

As of 2.9, this uses the method toMap in TraversableOnce, which is implemented as follows:

def toMap[T, U](implicit ev: A <:< (T, U)): immutable.Map[T, U] = {
    val b = immutable.Map.newBuilder[T, U]
    for (x <- self)
        b += x

    b.result
}