proposal-record-tuple icon indicating copy to clipboard operation
proposal-record-tuple copied to clipboard

Question about the implicitly-sorted-rule of key

Open navegador5 opened this issue 1 year ago • 1 comments

the document mentioned:

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"]

navegador5 avatar Aug 01 '24 00:08 navegador5