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
Copy file name to clipboardExpand all lines: README.md
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,9 +31,20 @@ Set's prototype Methods are in contrast designed to work as a binary operation o
31
31
Some algorithms may grow exponentially with a raising number of sets to be processes.
32
32
Please, see the documentation notes on the respective methods.
33
33
34
+
### Extending `Set`
35
+
36
+
This package builds upon the `Set` implementation, instead of providing an own.
37
+
Some suggest it's bad design to extend core implementations.
38
+
39
+
However, the core functionality of `Set` is stable and proven and this
40
+
package tries to be minimally invasive on the `Set` implementation.
41
+
42
+
Please, leave an issue, in case this extension breaks your setup by
43
+
whatever unexpected or undefined behaviour.
44
+
34
45
### Future Implementations
35
46
36
-
Currently this package only supports finite sets.
47
+
Currently, this package only supports finite sets.
37
48
A future implementation could include generators to support infinite sets and function-based operations with infinite sets. Ideas.concepts and contributions are very welcomed.
38
49
39
50
## Installation and Usage
@@ -59,7 +70,7 @@ Set.__isExtended__ // true if this package is installed
59
70
60
71
## API Documentation
61
72
62
-
There is a [markdown version](./api.md) and a [html version](https://jankapunkt.github.io/js-set-extension/) of the API documentation.
73
+
There is a [markdown version](./API.md) and a [html version](https://jankapunkt.github.io/js-set-extension/) of the API documentation.
63
74
If you think this documentation can be improved, please leave a pull request or open an issue.
0 commit comments