Haskell函数签名错误

时间:2013-10-08 22:24:55

标签: haskell

我有以下功能

encryptChar :: Char -> [Char] -> Char
encyptChar x z = z !! ((elemIndex) x cA)

其中cA是Chars列表。

但是,该函数在类型签名

中返回变量“encryptChar”的-Missing绑定

有人有建议吗? :)

谢谢!

1 个答案:

答案 0 :(得分:5)

Google第一次点击missing binding for variable in type signature会发出this page,其中说“这里的问题是该函数已声明其类型,但实际上并未在模块中定义。”在您的情况下,这是因为您拼写错误encryptChar