show/hide this revision's text 4 adding (>>=) = flip concatMap

The rule for desugaring a list comprehension requires an expression of the form [ e | p <- l ] (where e is an expression, p a pattern, and l a list expression) behave like

let ok p = [e]
    ok _ = []
in concatMap ok l

Previous versions of Haskell had monad comprehensions, which were removed from the language because they were hard to read and redundant with the do-notation. (List comprehensions are redundant, too, but they aren't so hard to read.) I think desugaring [ e | p <- l ] as a monad (or, to be precise, as a monad with zero) would yield something like

let ok p = return e
    ok _ = mzero
in l >>= ok

where mzero is from the MonadPlus class. This is very close to

do { p <- l; return e }

which desugars to

let ok p = return e
    ok _ = fail "..."
in l >>= ok

When we take the List Monad, we have

return e = [e]
mzero = fail _ = []
(>>=) = flip concatMap

I.e., the 3 approaches (list comprehensions, monad comprehensions, do expressions) are equivalent for lists.

show/hide this revision's text 3 revising language about desugaring

Haskell doesn't call the fail function.

The rule for desugaring a list comprehension requires an expression of the form [ e | p <- l ] (where e is an expression, p a pattern, and l a list expression) isbehave like

let ok p = [e]
    ok _ = []
in concatMap ok l

There is no "magic" here.

You may be confused by the fact that previous

Previous versions of Haskell had a thing called monad comprehensions, which were removed from the language because they were hard to read and redundant with the do-notation. (List comprehensions are redundant, too, but they aren't so hard to read.) I think the desugaring for [ e | p <- l ] as a monad (or, to be precise, as a monad with zero) would beyield something like

let ok p = return e
    ok _ = mzero
in l >>= ok

where mzero is from the MonadPlus class(defined as [] for lists). This is very close to

do { p <- l; return e }

which desugars to

let ok p = return e
    ok _ = fail "..."
in l >>= ok

When we take the List Monad, we have

return e = [e]
mzero = fail _ = []

I.e., the only difference is that 3 approaches (list comprehensions, monad comprehensions, do does call fail! expressions) are equivalent for lists.

show/hide this revision's text 2 fixing error in original answer, adding note on do-expressions

Haskell doesn't call the fail function. The rule for desugaring a list comprehension of the form [ e | p <- l ] (where e is an expression, p a pattern, and l a list expression) is

let ok p = e
    [e]
    ok _ = []
in concatMap ok l

There is no "magic" here.

You may be confused by the fact that previous versions of Haskell had a thing called monad comprehensions, which were removed from the language because they were hard to read and redundant with the do-notation. (List comprehensions are redundant, too, but they aren't so hard to read.) I think the desugaring for [ e | p <- l ] as a monad (or, to be precise, as a monad with zero) would be

let ok p = return e
    ok _ = mzero
in l >>= ok

where mzero is from the MonadPlus class (defined as [] for lists). This is very close to

do { p <- l; return e }

which desugars to

let ok p = return e
    ok _ = fail "..."
in l >>= ok

I.e., the only difference is that do does call fail!

show/hide this revision's text 1