F#:运算符绑定中的显式类型参数

发布于 2024-09-14 12:24:55 字数 436 浏览 7 评论 0原文

我尝试使用显式类型参数和约束定义运算符:

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 技术交流群。

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

发布评论

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

评论(2

や莫失莫忘 2024-09-21 12:24:55

编译器中的一个错误意味着符号运算符永远不会被视为与类型参数直接相邻。您可以通过例如解决方法

let inline myeq<'a, 'b 
    when 'a : not struct 
    and 'b : not struct> a b = obj.ReferenceEquals (a,b) 

let inline (===) a b = myeq a b

A bug in the compiler means that symbolic operators are never considered directly adjacent to type parameters. You can workaround via e.g.

let inline myeq<'a, 'b 
    when 'a : not struct 
    and 'b : not struct> a b = obj.ReferenceEquals (a,b) 

let inline (===) a b = myeq a b
时光是把杀猪刀 2024-09-21 12:24:55
let inline (===) (a : 'TA when 'TA : not struct) (b : 'TB when 'TB : not struct) = 
    obj.ReferenceEquals (a,b)
let inline (===) (a : 'TA when 'TA : not struct) (b : 'TB when 'TB : not struct) = 
    obj.ReferenceEquals (a,b)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文