If I have a collection c of type T and there is a property p on T (of type P, say), what is the best way to do a map-by-extracting-key?

val c: Collection[T]
val m: Map[P, T]

One way is the following:

m = new HashMap[P, T]
c foreach { t => m add (t.getP, t) }

But now I need a mutable map. Is there a better way of doing this so that it's in 1 line and I end up with an immutable Map? (Obviously I could turn the above into a simple library utility, as I would in Java, but I suspect that in Scala there is no need)

link|improve this question

feedback

4 Answers

up vote 18 down vote accepted

In 2.8, you can do

c map { t => (t.getP, t) } toMap
link|improve this answer
2  
I still prefer my suggestions in trac of a Traversable[K].mapTo( K => V) and Traversable[V].mapBy( V => K) were better! – oxbow_lakes Jul 14 '10 at 21:17
As alternative, with zip: c map (_.getP) zip c toMap – onof May 14 '11 at 15:00
1  
Be aware that this is a quadratic operation, but the same goes for most other variants given here. Looking at the source code of scala.collection.mutable.MapBuilder etc, it seems to me that for each tuple, a new immutable map is created to which the tuple is added. – Jona Christopher Sahnwaldt Mar 3 at 2:17
On my machine for a list with 500,000 elements, this Scala code is about 20 times slower than the straight-forward Java approach (create HashMap with appropriate size, loop over list, put elements into map). For 5,000 elements, Scala ist about 8 times slower. The loop approach written in Scala is roughly 3 times faster than the toMap variant, but still between 2 and 7 times slower than Java. – Jona Christopher Sahnwaldt Mar 11 at 2:13
feedback

In addition to @James Iry's solution, it is also possible to accomplish this using a fold. I suspect that this solution is slightly faster than the tuple method (fewer garbage objects are created):

val list = List("this", "maps", "string", "to", "length")
val map = list.foldLeft(Map[String, Int]()) { (m, s) => m(s) = s.length }
link|improve this answer
I will try this out (I'm sure it works :-). What is going on with the "(m,s)=>m(s) = s.length" function? I have seen the typical foldLeft example with a sum and a function "_ + _"; this is much more confusing! The function seems to assume that I already have a tuple (m,s), which I don't really get – oxbow_lakes Mar 24 '09 at 22:33
Is this right? According to the scaladoc of foldLeft: "foldLeft [B](z : B)(op : (B, A) => B) : B" B in this case must be a Map[String, Int], so I don't really understand the function in your example at all! It should return a Map for a start, shouldn't it? – oxbow_lakes Mar 24 '09 at 22:50
OK - so I've got this! "m(s) = s.length" (where m is a map) returns a new map with the mapping "s -> s.length". How was I supposed to know this? I can't find it anywhere in the programming in scala sections on maps! – oxbow_lakes Mar 25 '09 at 9:52
That is scala's syntactic sugar for update: An assignment f(args) = e with a function application to the left of the '=' operator is interpreted as f.update(args, e), i.e. the invocation of an update function defined by f. [The Scala Language Specification Version 2.7, 6.15 Assignments] – Palimondo Mar 18 '10 at 1:15
Man, Scala was weird back then! – missingfaktor Feb 4 at 9:53
feedback

You can construct a Map with a variable number of tuples. So use the map method on the collection to convert it into a collection of tuples and then use the : _* trick to convert the result into a variable argument.

scala> val list = List("this", "maps", "string", "to", "length") map {s => (s, s.length)}
list: List[(java.lang.String, Int)] = List((this,4), (maps,4), (string,6), (to,2), (length,6))

scala> val list = List("this", "is", "a", "bunch", "of", "strings")
list: List[java.lang.String] = List(this, is, a, bunch, of, strings)

scala> val string2Length = Map(list map {s => (s, s.length)} : _*)
string2Length: scala.collection.immutable.Map[java.lang.String,Int] = Map(strings -> 7, of -> 2, bunch -> 5, a -> 1, is -> 2, this -> 4)
link|improve this answer
I've been reading about Scala for >2 weeks and working through examples and not once had I seen this ": _ *" notation! Thanks very much for your help – oxbow_lakes Mar 23 '09 at 21:15
feedback

For what it's worth, here are two pointless ways of doing it:

scala> case class Foo(bar: Int)
defined class Foo

scala> import scalaz._, Scalaz._
import scalaz._
import Scalaz._

scala> val c = Vector(Foo(9), Foo(11))
c: scala.collection.immutable.Vector[Foo] = Vector(Foo(9), Foo(11))

scala> c.map(((_: Foo).bar) &&& identity).toMap
res30: scala.collection.immutable.Map[Int,Foo] = Map(9 -> Foo(9), 11 -> Foo(11))

scala> c.map(((_: Foo).bar) >>= (Pair.apply[Int, Foo] _).curried).toMap
res31: scala.collection.immutable.Map[Int,Foo] = Map(9 -> Foo(9), 11 -> Foo(11))
link|improve this answer
Also, fwiw, this is how those two would look in Haskell: Map.fromList $ map (bar &&& id) c, Map.fromList $ map (bar >>= (,)) c. – missingfaktor Feb 4 at 10:08
feedback

Your Answer

 
or
required, but never shown

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