Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tc39/proposal-set-methods
Proposal for new Set methods in JS
https://github.com/tc39/proposal-set-methods
Last synced: 11 days ago
JSON representation
Proposal for new Set methods in JS
- Host: GitHub
- URL: https://github.com/tc39/proposal-set-methods
- Owner: tc39
- License: other
- Created: 2016-05-28T16:40:47.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2024-03-28T20:47:26.000Z (8 months ago)
- Last Synced: 2024-04-13T17:19:27.795Z (7 months ago)
- Language: HTML
- Homepage: https://tc39.github.io/proposal-set-methods/
- Size: 299 KB
- Stars: 615
- Watchers: 47
- Forks: 13
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - proposal-set-methods - Strawman for new Set methods (HTML)
README
# Set Methods for JavaScript
This is a proposal to add methods like union and intersection to JavaScript's built-in `Set` class.
**It is currently at stage 4: it has been [added to the specification](https://github.com/tc39/ecma262/pull/3306). This repository is no longer active.**
Original readme follows.
## Proposal
This would add the following methods:
* `Set.prototype.intersection(other)`
* `Set.prototype.union(other)`
* `Set.prototype.difference(other)`
* `Set.prototype.symmetricDifference(other)`
* `Set.prototype.isSubsetOf(other)`
* `Set.prototype.isSupersetOf(other)`
* `Set.prototype.isDisjointFrom(other)`These methods would all require their arguments to be a Set, or at least something which looks like a Set in terms of having a numeric `size` property as well as `keys` and `has` methods.
See [details.md](./details.md) for details of current decisions made in this proposal.
Rendered spec text is available [here](https://tc39.es/proposal-set-methods/).
The proposal was originally authored by [Michał Wadas](https://github.com/Ginden) and later championed by [Sathya Gunasekaran](https://github.com/gsathya) and [Kevin Gibbons](https://github.com/bakkot).
## Implementations
This proposal is ready for engines to implement and ship. See [this issue](https://github.com/tc39/proposal-set-methods/issues/78) for current status.
## TC39 meeting notes
* [May 2018](https://github.com/tc39/notes/blob/8711614630f631cb51dfb803caa087bedfc051a3/meetings/2018-05/may-22.md#set-methods)
* [January 2019](https://github.com/tc39/notes/blob/8711614630f631cb51dfb803caa087bedfc051a3/meetings/2019-01/jan-29.md#update-on-set-methods)
* [March 2022](https://github.com/tc39/notes/blob/6f7e075341e435f22777b07a3ee5141442d2d8a7/meetings/2022-03/mar-31.md#extending-built-ins) - discussion of how to extend built-ins in general
* [July 2022](https://github.com/tc39/notes/blob/6f7e075341e435f22777b07a3ee5141442d2d8a7/meetings/2022-07/jul-20.md#set-methods-how-to-access-properties-of-the-argument)
* [September 2022](https://github.com/tc39/notes/blob/65a82252aa14c273082e7687c6712bb561bc087a/meetings/2022-09/sep-14.md#set-methods-part-iii)
* [November 2022](https://github.com/tc39/notes/blob/36635060482b1b27bcaff3c950dd9f7b31492dab/meetings/2022-11/nov-30.md#set-methods)
* [March 2023](https://github.com/tc39/notes/blob/604156b02e312ea2ebd119518fa383efdfb1e646/meetings/2023-03/mar-21.md#set-methods-what-to-do-about-intersection-order)
* [July 2023](https://github.com/tc39/notes/blob/604156b02e312ea2ebd119518fa383efdfb1e646/meetings/2023-07/july-12.md#set-methods-deferring-callability-check--handling-negative-sizes)
* [February 2024](https://github.com/tc39/notes/blob/604156b02e312ea2ebd119518fa383efdfb1e646/meetings/2024-02/feb-6.md#set-methods-bugfix-and-update)
* [April 2024](https://github.com/tc39/notes/blob/HEAD/meetings/2024-04/april-08.md#set-methods-for-stage-4)## (Semi)relevant previous discussions
* [proposal-rm-builtin-subclassing](https://github.com/tc39/proposal-rm-builtin-subclassing)
* [Map#map and Map#filter](https://github.com/tc39/ecma262/pull/13)
* [Map.prototype.map and Map.prototype.filter (spec) + Set](https://esdiscuss.org/notes/2014-11-19)
* [Map: filter/map and more](https://esdiscuss.org/topic/map-filter-map-and-more)
* [Original topic regarding this proposal](https://esdiscuss.org/topic/new-set-prototype-methods)
* [Newer topic regarding this proposal](https://esdiscuss.org/topic/new-set-methods-again)## Comparison with other languages
See [other languages document](./other-languages.md) to get overview of `Set` methods in other languages.
## Naming
See [naming bikeshedding](./name-bikeshedding.md) document for details.
We decided to choose:
* **Symmetric difference** - **`symmetricDifference`**
* **Intersection** - **`intersection`**
* **Union** - **`union`**
* **Difference** - **`difference`**## Polyfills
- [core-js](https://github.com/zloirock/core-js#new-set-methods)
- [es-shims](https://github.com/es-shims):
- [difference](https://npmjs.com/set.prototype.difference)
- [intersection](https://npmjs.com/set.prototype.intersection)
- [symmetricDifference](https://npmjs.com/set.prototype.symmetricdifference)
- [union](https://npmjs.com/set.prototype.union)
- [isDisjointFrom](https://npmjs.com/set.prototype.isdisjointfrom)
- [isSubsetOf](https://npmjs.com/set.prototype.issubsetof)
- [isSupersetOf](https://npmjs.com/set.prototype.issupersetof)