F#:运算符绑定中的显式类型参数
我尝试使用显式类型参数和约束定义运算符:
let inline (===)<'a, 'b
when 'a : not struct
and 'b : not struct> a b = obj.ReferenceEquals (a,b)
它在 F# 2.0 中运行良好,但会产生以下结果:
警告 FS1189:
类型参数必须直接放置 与类型名称相邻,例如“type C<'T>",而不是键入“C <'T>”
那么,为运算符定义执行显式类型参数规范的正确方法是什么?
ps 请不要告诉我有关隐式类型参数和一些其他解决方法,我想具体解决这个问题。
I'm trying to define operator with the explicit type parameters and constraints:
let inline (===)<'a, 'b
when 'a : not struct
and 'b : not struct> a b = obj.ReferenceEquals (a,b)
It works well in F# 2.0, but produces the:
warning FS1189:
Type parameters must be placed directly
adjacent to the type name, e.g. "type
C<'T>", not type "C <'T>"
So what is the right way to do explicit type arguments specification for operator definition?
p.s. Please don't tell me about implicit type parameters and some other workarounds, I want to solve concretely this issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编译器中的一个错误意味着符号运算符永远不会被视为与类型参数直接相邻。您可以通过例如解决方法
A bug in the compiler means that symbolic operators are never considered directly adjacent to type parameters. You can workaround via e.g.