我有以下功能
encryptChar :: Char -> [Char] -> Char
encyptChar x z = z !! ((elemIndex) x cA)
其中cA是Chars列表。
但是,该函数在类型签名
中返回变量“encryptChar”的-Missing绑定有人有建议吗? :)
谢谢!
答案 0 :(得分:5)
Google第一次点击missing binding for variable in type signature
会发出this page,其中说“这里的问题是该函数已声明其类型,但实际上并未在模块中定义。”在您的情况下,这是因为您拼写错误encryptChar
。