Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I think I'm missing something:

scala> Some(1) collect ({ case n if n > 0 => n + 1; case _ => 0})
res0: Option[Int] = Some(2)

scala> None collect ({ case n if n > 0 => n + 1; case _ => 0})   
<console>:6: error: value > is not a member of Nothing
       None collect ({ case n if n > 0 => n + 1; case _ => 0})
                                 ^
<console>:6: error: value + is not a member of Nothing
       None collect ({ case n if n > 0 => n + 1; case _ => 0})

Why is this error happening? I think I'm misunderstanding how collect works...

share|improve this question
BTW, you don't need the parens around the curly braces: Some(1) collect { case n if n > 0 => n + 1; case _ => 0} should work as well. – Landei Mar 3 '11 at 22:55
I'm well aware of that. Each of us has their own style. – pr1001 Mar 4 '11 at 14:03

2 Answers

up vote 11 down vote accepted

Unless you specify, the literal None is of type Option[Nothing]. This is necessary, since None has to be a valid member of all types Option[_]. If you instead wrote

(None:Option[Int]) collect ({ case n if n > 0 => n + 1; case _ => 0}) 

or

val x:Option[Int] = None
x collect ({ case n if n > 0 => n + 1; case _ => 0}) 

then the compiler would be able to type check your collect call

share|improve this answer
None collect ({ case n if n > 0 => n + 1; case _ => 0}) 

Why would n have the method >? There's nothing in there to allow the compiler to assume that. So, try changing that to:

None collect ({ case n: Int if n > 0 => n + 1; case _ => 0})

And you'll get the following error message:

<console>:8: error: pattern type is incompatible with expected type;
 found   : Int
 required: Nothing
       None collect ({ case n: Int if n > 0 => n + 1; case _ => 0}) 
                               ^

Meaning, basically, that the compiler knows an Int is impossible here, since you are just passing None. As it happens, None is of type Option[Nothing].

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.