I was writing a quick one-liner in GHCi and tried to compose sum with map. I figured the reason it failed is because map gives output of a general type [b] whereas sum takes in specific input Num a => [a]. However, there is nothing wrong with this code assuming that the output of the map function is type Num b => [b].

I thought writing a restricting type declaration might work (although I guess that prevents you from doing it in GHCi) but it still didn't:

myFunc :: Num b => (a -> b) -> [a] -> b
myFunc = sum . map

Gave me the following error:

Couldn't match expected type `[[a] -> b]'
            with actual type `[a] -> [b]'
Expected type: (a -> b) -> [[a] -> b]
  Actual type: (a -> b) -> [a] -> [b]
In the second argument of `(.)', namely `map'
In the expression: sum . map

Is there any way to do this? Maybe I am just missing something obvious (new to Haskell).

link|improve this question
2  
Try myFunc f = sum . map f. (.) composes "unary" functions. – trinithis Dec 31 '11 at 7:32
feedback

1 Answer

up vote 5 down vote accepted

sum . map isn't a definition you're looking for. Observe that

 (.) :: (b -> c) -> (a -> b) -> a -> c

The dot operator accepts two unary functions. It doesn't work as map takes two arguments:

map :: (a -> b) -> [a] -> [b]

One of possible solutions would be to explicitly bind map's first argument:

myFunc :: Num c => (a -> c) -> [a] -> c
myFucc f = sum . map f

Alternatively you could use curry and uncurry and achieve the same result.

myFunc = curry $ sum . uncurry map
link|improve this answer
3  
Another point-free definition being (sum .) . map or sum .: map where (.:) = (.) . (.). – Jon Purdy Dec 31 '11 at 8:25
1  
"The dot operator accepts two unary functions. It doesn't work ..." Well all functions are technically unary functions; "multi-argument" functions are just unary functions that return other functions. So it doesn't "not work" because map takes two arguments; it just works in a way other than the OP intended – newacct Jan 1 at 7:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.