private[this]object MMMap extends  HashMap[A, Set[B]] with MultiMap[A, B]

How convert it to immutable?

link|improve this question

71% accept rate
I guess you create a new one? Just guessing, but usually things work this way. – Lohoris May 12 '10 at 8:24
I'm not sure what do you mean – Jeriho May 12 '10 at 9:03
feedback

2 Answers

up vote 4 down vote accepted

The immutable hierarchy doesn't contain a MultiMap, so you won't be able to use the converted structure with the same convenient syntax. But if you're happy to deal with key/valueset pairs, then:

If you just want a mutable HashMap, you can just use x.toMap in 2.8 or collection.immutable.Map(x.toList: _*) in 2.7.

But if you want the whole structure to be immutable--including the underlying set!--then you have to do more: you need to convert the sets along the way. In 2.8:

x.map(kv => (kv._1,kv._2.toSet)).toMap

In 2.7:

collection.immutable.Map(
  x.map(kv => (kv._1,collection.immutable.Set(kv._2.toList: _*))).toList: _*
)
link|improve this answer
With impatience waiting for scala 2.8-stable – Jeriho May 13 '10 at 10:44
feedback
scala> val mutableMap = new HashMap[Int, String]
mutableMap: scala.collection.mutable.HashMap[Int,String] = Map()

scala> mutableMap += 1 -> "a"
res5: mutableMap.type = Map((1,a))

scala> mutableMap
res6: scala.collection.mutable.HashMap[Int,String] = Map((1,a))

scala> val immutableMap = mutableMap.toMap
immutableMap: scala.collection.immutable.Map[Int,String] = Map((1,a))

scala> immutableMap += 2 -> "b"
<console>:11: error: reassignment to val
       immutableMap += 2 -> "b"
                ^
link|improve this answer
I was surprised a bit when I saw "mutableMap.toMap" but then I verified api and didn't found nothing resembling. scala-lang.org/docu/files/api/scala/collection/mutable/… Second issue - Set[B] is mutable. That is why converting is not so easy. – Jeriho May 12 '10 at 9:00
1  
@Jeriho: toMap is introduced in Scala2.8 – Eastsun May 12 '10 at 9:07
Thx Eastsun. Sorry Jeriho, I didn't mentioned it. – michael.kebe May 12 '10 at 9:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.