proposal-record-tuple
proposal-record-tuple copied to clipboard
ECMAScript proposal for the Record and Tuple value types. | Stage 2: it will change!
For all of these questions I searched through the issues (including closed) and the main-page `README.md` to find an answer before asking here. If one of these answers is there...
I'm hoping I've just misread the current version of the spec text. If so, please point me at what I'm missing and close this issue. It looks like the current...
``` ts let p = #{ x: 11, y: 22 } function handlePoint(x: unknown) { if (x instanceof /* ??? */) { // how to determine whether an unknown variable...
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...
At yesterday's TC39 plenary (14th April 2025) consensus was achieved to withdraw the Records and Tuples proposal. The proposal was at stage 2 and unable to gain further consensus for...
I realize this concept of records/tuples as keys and unordered tuples (or sets #377 ) are all connected to the same problem of sorting. (Sorting string keys seemed to have...