Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a list of documents, where a Document has an owner which is a User.

What is the most elegant way of transforming this list into a Map of Users to the List of Documents that they own?

So for example I have:

"doc1" owned by user "John"
"doc2" owned by user "Frank"
"doc3" owned by user "John"

I should end up with a map of:

"John" -> List("doc1", "doc3"), "Frank" -> List("doc2")

I can think of one way which would be to grab all unique users from the documents and for each of them filter the document list to just be the ones they own, but I'm wondering if there's a way that uses a fixed number of passes through the list to prevent any performance problems if the list is big.

share|improve this question

1 Answer

up vote 13 down vote accepted

Use groupBy:

scala> case class Doc(id: String, owner: String)
defined class Doc

scala> List(Doc("doc1", "John"), Doc("doc2", "Frank"), Doc("doc3", "John"))
res0: List[Doc] = List(Doc(doc1,John), Doc(doc2,Frank), Doc(doc3,John))

scala> res0.groupBy(_.owner)
res1: scala.collection.immutable.Map[String,List[Doc]] = Map(
  Frank -> List(Doc(doc2,Frank)), John -> List(Doc(doc1,John), Doc(doc3,John)))
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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