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
Insertion order of record keys does not affect equality of records,
because there's no way to observe the original ordering of the keys, as they're implicitly sorted:
what is the sort rule? A or B ?
A. first sort index-like keys : ("1", "15", "6"... ), then others ["aa","bb","cc"]_ B.just sort them together : [1,15, 6, "aa","bb","cc"]
The text was updated successfully, but these errors were encountered:
1. Let _sortedEntries_ be a new List containing the values of _entries_ sorted such that, for any entry two entries _a_ and _b_, _a_ will be placed before _b_ if the result of performing Abstract Relational Comparison _a_.[[Key]] < _b_.[[Key]] is *true*.
for any entry two entries a and b, a will be placed before b if the result of performing Abstract Relational Comparison a.[[Key]] < b.[[Key]] is true.
the document mentioned:
what is the sort rule? A or B ?
A. first sort index-like keys : ("1", "15", "6"... ), then others ["aa","bb","cc"]_
B.just sort them together : [1,15, 6, "aa","bb","cc"]
The text was updated successfully, but these errors were encountered: