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: docs/api/utils/proxySet.mdx
+4-3
Original file line number
Diff line number
Diff line change
@@ -16,11 +16,12 @@ Native `Sets` store their data in internal slots which are not observable. This
16
16
`proxySet` is useful when you need the functionality of a `Set` but still want to track changes to the data. `proxySet` can be useful if you're wanting to store unique values or if you want to perform mathematical `Set` operations on the data, such as union, intersection, or difference. `proxySet` supports all of the new methods introduced to `Set`:
17
17
18
18
-`intersection`
19
-
-`isDisjointFrom`
19
+
-`union`
20
+
-`difference`
21
+
-`symmetricDifference`
20
22
-`isSubsetOf`
21
23
-`isSupersetOf`
22
-
-`symmetricDifference`
23
-
-`union`
24
+
-`isDisjointFrom`
24
25
25
26
You can see a full list of the methods supported by `proxySet` in the [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set).
0 commit comments