如何创建一个stringmap

时间:2011-10-19 00:46:16

标签: opa

当我尝试使用

编译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,

-
巴曼戈巴

1 个答案:

答案 0 :(得分:1)

你可能想写这个:

m: stringmap(list(string)) = StringMap.empty

-> 'b在您引用的类型错误中引用StringMap.empty(),这与您的强制措施不符。