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).
myFunc f = sum . map f.(.)composes "unary" functions. – trinithis Dec 31 '11 at 7:32