You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
f64 has separate binary representations for 0 and -0. They compare equal, but the minus sign is often visible when printed the value. However, in JS converting -0 to a string results in "0". If we do add a separate binary representation, we need to ensure it compares equal and produces the same hash as 0 though.
The text was updated successfully, but these errors were encountered:
f64
has separate binary representations for0
and-0
. They compare equal, but the minus sign is often visible when printed the value. However, in JS converting-0
to a string results in"0"
. If we do add a separate binary representation, we need to ensure it compares equal and produces the same hash as0
though.The text was updated successfully, but these errors were encountered: