Inspired by this article. I was playing with translating functions from list comprehension to combinatory style. I found something interesting.
-- Example 1: List Comprehension
*Main> [x|(x:_)<-["hi","hello",""]]
"hh"
-- Example 2: Combinatory
*Main> map head ["hi","hello",""]
"hh*** Exception: Prelude.head: empty list
-- Example 3: List Comprehension (translated from Example 2)
*Main> [head xs|xs<-["hi","hello",""]]
"hh*** Exception: Prelude.head: empty list
It seems strange that example 1 does not throw an exception, because (x:_) pattern matches one of the definitions of head. Is there an implied filter (not . null) when using list comprehensions?
["hi","hello",""] >>= (\(x:_) -> return x)"Non-exhaustive patterns in lambda" – Owen Aug 10 '11 at 7:36do (x:_) <- ["hi","hello",""]; return xyields"hh". – pelotom Aug 10 '11 at 8:11[ head s | s <- ["hi", "hello", ""]]will also raise thePrelude.head: empty listexception. – John L Aug 10 '11 at 9:03mapMaybe (spoon . head) ["hi", "hello", ""]gives"hh". – C. A. McCann Aug 10 '11 at 13:26