如何创建字符串映射

发布于 2024-12-10 22:58:49 字数 310 浏览 0 评论 0原文

当我尝试编译 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.

我希望有任何提示/帮助来找出我的代码出了什么问题。蒂亚,

--
巴赫曼

When I try to compile an Opa program with

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

I get this error:

Function was found of type ordered_map(string, 'a, String.order) but application expects it to be of type  -> 'b.

I'd appreciate any hint/help to figure out what's wrong with my code. TIA,

--
Bahman

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

川水往事 2024-12-17 22:58:49

您可能想这样写:

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

-> 'b 指的是您引用的类型错误中的 StringMap.empty() ,这与您的强制转换不兼容。

You probably want to write this:

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

-> 'b refers to StringMap.empty() in the type error you quoted, which is incompatible with your coercion.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文