3

我定义了函数 listToNumber 如下:

listToNumber = foldl1 (\acc xs -> acc*10 + xs)

当仅提供一个数字列表时,它可以正常工作,例如:

listToNumber [1,2,3,4] = 1234
map listToNumber [[1,2,3,4], [5,4,3,2]] = [1234,5432]

但是,以下返回错误消息:

map listToNumber permutations[1..3]

有人可以解释一下吗?

PS错误信息如下:

Couldn't match expected type `[t1] -> t0' with actual type `[b0]'
The function `map' is applied to three arguments,
but its type `([b0] -> b0) -> [[b0]] -> [b0]' has only two
In the expression: map listToNumber permutations [1 .. 3]
In an equation for `it':
    it = map listToNumber permutations [1 .. 3]
4

2 回答 2

7

尝试map listToNumber (permutations [1 .. 3])

在 ghci 中,您可以检查函数或表达式的类型:t

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

im 意味着map需要一个函数和一个列表并返回一个列表,但是在map listToNumber permutations [1 .. 3]您尝试将两个函数和一个列表传递给映射时(因为函数应用程序关联到左侧)。

于 2013-08-30T06:40:20.853 回答
0

另一种变体:map listToNumber $ permutations [1..3].

于 2013-08-30T13:15:06.860 回答