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

Possible Duplicate:
Better way of converting a Map[K, Option[V]] to a Map[K,V]

I have a Map[Symbol, Option[String]] from reading values from a web page, where some might be missing.

I'd like to 'flatten' this to Map[Symbol, String] removing all the None values.

The best I can do so far is

def removeNones[K, V](map: Map[K, Option[V]]): Map[K, V] = 
    map.collect { case kv if kv._2.isDefined => (kv._1, kv._2.get) }

but I really don't like the case, and having to rebuild the Pair.

Can anyone find a nicer expression?

share|improve this question
2  
See this question. You can rewrite your case as simply case (k, Some(v)) => (k, v). – Travis Brown Oct 10 '11 at 14:59
2  
You're absolutely right, wish the SO dup finder worked as well as people do. Voted to close. – Duncan McGregor Oct 10 '11 at 15:07

marked as duplicate by Travis Brown, Duncan McGregor, Alexey Romanov, Daniel C. Sobral, Graviton Oct 11 '11 at 2:56

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 9 down vote accepted
val m = Map('a -> Some("a string"), 'b -> None)

m collect {case(a, Some(b)) => (a, b)}
  // Map('a -> a string)

seems to do the trick.

share|improve this answer
It does (stackoverflow.com/q/7680097/754787) but it sounds like the OP would rather not have a case, and not build a Pair. Dispensing with the case is probably feasible but inconvenient, I'm not sure one can do without the pair without resorting to a plain loop. – Didier Dupont Oct 10 '11 at 15:05
1  
No, I don't mind the case if it's as elegant as that! – Duncan McGregor Oct 10 '11 at 15:10

I think more elegant way will be like this:

val map1 = Map('a -> Some("a"), 'b -> None)
val map2 = for ((k: Symbol, Some(v)) <- map1) yield (k,v)

Let's print the result:

Predef println  map2
> Map('a -> a)
share|improve this answer
2  
Good answer! You don't need to the type annotation on the Symbol though: for ((k, Some(v)) <- map1) yield (k, v) is sufficient. – Luigi Plinge Oct 10 '11 at 18:18
Yes, you're right of course. My bad for explicit typing)) – franza Oct 11 '11 at 5:37

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