Why don't Haskell list comprehensions cause an error when pattern match fails? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T15:10:40Zhttp://stackoverflow.com/feeds/question/649274http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/649274/why-dont-haskell-list-comprehensions-cause-an-error-when-pattern-match-fails4Why don't Haskell list comprehensions cause an error when pattern match fails?Cybis2009-03-16T04:34:10Z2009-03-17T15:22:39Z
<p>I'm trying to understand how Haskell list comprehensions work "under the hood" in regards to pattern matching. The following ghci output illustrates my point:</p>
<pre><code>Prelude> let myList = [Just 1, Just 2, Nothing, Just 3]
Prelude> let xs = [x | Just x <- myList]
Prelude> xs
[1,2,3]
Prelude>
</code></pre>
<p>As you can see, it is able to skip the "Nothing" and select only the "Just" values. I understand that List is a monad, defined as (source from Real World Haskell, ch. 14):</p>
<pre><code>instance Monad [] where
return x = [x]
xs >>= f = concat (map f xs)
xs >> f = concat (map (\_ -> f) xs)
fail _ = []
</code></pre>
<p>Therefore, a list comprehension basically builds a singleton list for every element selected in the list comprehension and concatenates them. If a pattern match fails at some step, the result of the "fail" function is used instead. In other words, the "Just x" pattern doesn't match so [] is used as a placeholder until 'concat' is called. That explains why the "Nothing" appears to be skipped.</p>
<p>What I don't understand is, how does Haskell know to call the "fail" function? Is it "compiler magic", or functionality that you can write yourself in Haskell? Is it possible to write the following "select" function to work the same way as a list comprehension?</p>
<pre><code>select :: (a -> b) -> [a] -> [b]
select (Just x -> x) myList -- how to prevent the lambda from raising an error?
[1,2,3]
</code></pre>
http://stackoverflow.com/questions/649274/why-dont-haskell-list-comprehensions-cause-an-error-when-pattern-match-fails/649642#6496420Answer by Tom Lokhorst for Why don't Haskell list comprehensions cause an error when pattern match fails?Tom Lokhorst2009-03-16T08:35:27Z2009-03-16T08:58:01Z<p>I don't think the list comprehension syntax has much to do with the fact that List (<code>[]</code>), or <code>Maybe</code> for that matter, happens to be an instance of the <code>Monad</code> type class.</p>
<p>List comprehensions are indeed <em>compiler magic</em> or <em>syntax sugar</em>, but that's possible because the compiler knows the structure of the <code>[]</code> data type.</p>
<p>Here's what the list comprehension is compiled to: (Well, I think, I didn't actually check it against the GHC)</p>
<pre><code>xs = let f = \xs -> case xs of
Just x -> [x]
_ -> []
in concatMap f myList
</code></pre>
<p>As you can see, the compiler doesn't have to call the <code>fail</code> function, it can simply inline a empty list, because it knows what a list <em>is</em>.</p>
<p><hr /></p>
<p>Interestingly, this fact that the list comprehensions syntax 'skips' pattern match failures is used in some libraries to do generic programming. See the example in the <a href="http://www.haskell.org/haskellwiki/Uniplate" rel="nofollow">Uniplate library</a>.</p>
<p><hr /></p>
<p><strong>Edit:</strong> Oh, and to answer your question, you can't call your <code>select</code> function with the lambda you gave it. It will indeed fail on a pattern match failure if you call it with an <code>Nothing</code> value.</p>
<p>You could pass it the <code>f</code> function from the code above, but than <code>select</code> would have the type:</p>
<pre><code>select :: (a -> [b]) -> [a] -> [b]
</code></pre>
<p>which is perfectly fine, you can use the <code>concatMap</code> function internally :-)</p>
<p>Also, that new <code>select</code> now has the type of the monadic bind operator for lists (with its arguments flipped):</p>
<pre><code>(>>=) :: [a] -> (a -> [b]) -> [b]
xs >>= f = concatMap f xs -- 'or as you said: concat (map f xs)
</code></pre>
http://stackoverflow.com/questions/649274/why-dont-haskell-list-comprehensions-cause-an-error-when-pattern-match-fails/650672#6506723Answer by Chris Conway for Why don't Haskell list comprehensions cause an error when pattern match fails?Chris Conway2009-03-16T14:30:46Z2009-03-17T15:22:39Z<p>The <a href="http://haskell.org/onlinereport/exps.html#list-comprehensions" rel="nofollow">rule for desugaring a list comprehension</a> requires an expression of the form <code>[ e | p <- l ]</code> (where <code>e</code> is an expression, <code>p</code> a pattern, and <code>l</code> a list expression) behave like</p>
<pre><code>let ok p = [e]
ok _ = []
in concatMap ok l
</code></pre>
<p>Previous versions of Haskell had <a href="http://homepages.inf.ed.ac.uk/wadler/papers/monads/monads.ps" rel="nofollow">monad comprehensions</a>, which were removed from the language because they were hard to read and redundant with the <code>do</code>-notation. (List comprehensions are redundant, too, but they aren't so hard to read.) I <em>think</em> desugaring <code>[ e | p <- l ]</code> as a <em>monad</em> (or, to be precise, as a <em>monad with zero</em>) would yield something like</p>
<pre><code>let ok p = return e
ok _ = mzero
in l >>= ok
</code></pre>
<p>where <code>mzero</code> is from the <code>MonadPlus</code> class. This is very close to </p>
<pre><code>do { p <- l; return e }
</code></pre>
<p>which <a href="http://haskell.org/onlinereport/exps.html#do-expressions" rel="nofollow">desugars</a> to</p>
<pre><code>let ok p = return e
ok _ = fail "..."
in l >>= ok
</code></pre>
<p>When we take the List Monad, we have</p>
<pre><code>return e = [e]
mzero = fail _ = []
(>>=) = flip concatMap
</code></pre>
<p>I.e., the 3 approaches (list comprehensions, monad comprehensions, <code>do</code> expressions) are equivalent for lists.</p>
http://stackoverflow.com/questions/649274/why-dont-haskell-list-comprehensions-cause-an-error-when-pattern-match-fails/653180#6531809Answer by Porges for Why don't Haskell list comprehensions cause an error when pattern match fails?Porges2009-03-17T06:27:24Z2009-03-17T06:27:24Z<p>While implemenatations of Haskell might not do it directly like this internally, it is helpful to think about it this way :)</p>
<pre><code>[x | Just x <- myList]
</code></pre>
<p>... becomes:</p>
<pre><code>do
Just x <- myList
return x
</code></pre>
<p>... which is:</p>
<pre><code>myList >>= \(Just x) -> return x
</code></pre>
<p>As to your question:</p>
<blockquote>
<p>What I don't understand is, how does Haskell know to call the "fail" function?</p>
</blockquote>
<p>In do-notation, if a pattern binding fails (i.e. the <code>Just x</code>), then the fail method is called. For the above example, it would look something like this:</p>
<pre><code>myList >>= \temp -> case temp of
(Just x) -> return x
_ -> fail "..."
</code></pre>
<p>So, every time you have a pattern-match in a monadic context that may fail, Haskell inserts a call to <code>fail</code>. Try it out with IO:</p>
<pre><code>main = do
(1,x) <- return (0,2)
print x -- x would be 2, but the pattern match fails
</code></pre>