Possible Duplicate:
Why don't Haskell list comprehensions cause an error when pattern match fails?
Today I saw the following code:
Prelude> [a | Just a <- [Just 10, Nothing, Just 20]]
[10, 20]
It works. But I thought that the above list comprehension is just syntactic sugar for...
[Just 10, Nothing, Just 20] >>= (\(Just x) -> return x)
...for which Haskell, when encountering the Nothing, would emit an error *** Exception: Non-exhaustive patterns in lambda.
So my question is: what does [a | Just a <- [Just 10, Nothing, Just 20]] translate into (in terms of monadic code) that makes it ignore the Nothing?