IEqualityComparer 相当于 (=) 运算符

发布于 2024-11-28 17:12:28 字数 229 浏览 0 评论 0原文

是否公开了与相等 (=) 运算符具有相同行为的 IEqualityComparer? LanguagePrimitives 模块包含以下几个:FastGenericEqualityComparerGenericEqualityComparerGenericEqualityERComparer。也许还有其他人?

Is an IEqualityComparer exposed that has the same behavior as the equality (=) operator? The LanguagePrimitives module contains a few: FastGenericEqualityComparer, GenericEqualityComparer, GenericEqualityERComparer. Maybe there are others as well?

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

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

发布评论

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

评论(1

筑梦 2024-12-05 17:12:28

深入研究 Reflector 后,它看起来像 FastGenericEqualityComparer 就是其中之一。它和 (=) 运算符两者都调用 HashCompare.GenericEqualityIntrinsic<'T>

编辑

[`HashIdentity.Structural`](https://fsharp.github.io/fsharp-core-docs/reference/fsharp-collections-hashidentity.html#Structural) also forwards to `HashCompare.GenericEqualityIntrinsic`.

After digging through Reflector a bit more, it looks like FastGenericEqualityComparer is the one. It and the (=) operator both call HashCompare.GenericEqualityIntrinsic<'T>.

EDIT

[`HashIdentity.Structural`](https://fsharp.github.io/fsharp-core-docs/reference/fsharp-collections-hashidentity.html#Structural) also forwards to `HashCompare.GenericEqualityIntrinsic`.

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