未验证 提交 b0d4d77c 编写于 作者: D dotnet-automerge-bot 提交者: GitHub

Merge pull request #5681 from Microsoft/merges/master-to-dev16.0

Merge master to dev16.0
......@@ -1576,15 +1576,15 @@ namespace Microsoft.FSharp.Core
when 'T : nativeint = (# "ceq" x y : bool #)
when 'T : unativeint = (# "ceq" x y : bool #)
when 'T : float =
if not (# "ceq" x x : bool #) && not (# "ceq" y y : bool #) then
if (# "ceq" x y : bool #) then
true
else
(# "ceq" x y : bool #)
not (# "ceq" x x : bool #) && not (# "ceq" y y : bool #)
when 'T : float32 =
if not (# "ceq" x x : bool #) && not (# "ceq" y y : bool #) then
if (# "ceq" x y : bool #) then
true
else
(# "ceq" x y : bool #)
not (# "ceq" x x : bool #) && not (# "ceq" y y : bool #)
when 'T : char = (# "ceq" x y : bool #)
when 'T : string = System.String.Equals((# "" x : string #),(# "" y : string #))
when 'T : decimal = System.Decimal.op_Equality((# "" x:decimal #), (# "" y:decimal #))
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册