当我尝试使用
编译Opa程序时m: stringmap(list(string)) = StringMap.empty()
我收到此错误:
Function was found of type ordered_map(string, 'a, String.order) but application expects it to be of type -> 'b.
我很感激有任何提示/帮助来弄清楚我的代码有什么问题。 TIA,
-
巴曼戈巴
答案 0 :(得分:1)
你可能想写这个:
m: stringmap(list(string)) = StringMap.empty
-> 'b
在您引用的类型错误中引用StringMap.empty()
,这与您的强制措施不符。