<div dir="auto"><div><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue, 12 Mar 2024, 19:29 Brian Goetz, <<a href="mailto:brian.goetz@oracle.com">brian.goetz@oracle.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><u></u>

  
  <div>
    <font size="4" face="monospace">Without diving into operator
      overloading, I think you have this bit backwards:</font><br>
    <br>
    <div>On 3/11/2024 6:38 PM, Stephen
      Colebourne wrote:<br>
    </div>
    <blockquote type="cite">
      <pre>== *will* be widely used as the equals operator
irrespective of the authors' wishes. Just as it is for Enum and Class
objects. This will inevitably lead to bug reports where == on two
different NaN returns false.
</pre>
    </blockquote>
    <br>
    But, this is not the case; there is no case where float== says any
    NaNs are equal to any other, even themselves.  Float== treats _all_
    NaNs as unequal, even the same NaN bit pattern, even the same
    variable (f == f). <br></div></blockquote></div></div><div dir="auto"><br></div><div dir="auto">Not sure why you think my original mail was discussing primitive type float ==. It wasn't. It was discussing the behaviour of java.lang.Float/Double once converted to a value type.</div><div dir="auto"><br></div><div dir="auto"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div>
    The anomaly created by the proposed Object== semantics is that a
    value type with a float field may treat the two as Object==, when
    the component fields are not float==, because float== uses neither
    bitwise nor representational equivalence, regardless of NaN bit
    patterns. <br></div></blockquote></div></div><div dir="auto"><br></div><div dir="auto">Given the current state of Valhalla, I believe that this code always works and operates in a sensible way except for java.lang.Float/Double wrt odd NaNs:</div><div dir="auto"><br></div><div dir="auto">  SomeNumericValueType a = loadA();</div><div dir="auto">  SomeNumericValueType b = loadB();</div><div dir="auto">  if (a == b) {</div><div dir="auto">    // do something when equal</div><div dir="auto">  }</div><div dir="auto"><br></div><div dir="auto">At no point does this example refer to == on primitive float/double (where the language is forever screwed). The key point is that code like that above will be widely adopted and considered correct. I do not believe you will convince developers to use a.equals(b) in numeric scenarios like that above.</div><div dir="auto"><br></div><div dir="auto">Stephen</div><div dir="auto"><br></div><div dir="auto"><br></div><div dir="auto"><br></div><div dir="auto"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div>
  </div>

</blockquote></div></div></div>