Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(docs): update docs #495

Merged
merged 1 commit into from
Jul 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1867,6 +1867,7 @@ Mutable Set.
| <code><a href="#@winglang/sdk.std.MutSet.copy">copy</a></code> | Create an immutable shallow copy of this set. |
| <code><a href="#@winglang/sdk.std.MutSet.delete">delete</a></code> | Removes a specified value from a set, if it is in the set. |
| <code><a href="#@winglang/sdk.std.MutSet.has">has</a></code> | Returns a boolean indicating whether an element with the specified value exists in the set. |
| <code><a href="#@winglang/sdk.std.MutSet.toArray">toArray</a></code> | Create an immutable array shallow copy of this set. |

---

Expand Down Expand Up @@ -1934,6 +1935,14 @@ The value to test for presence in the Set object.

---

##### `toArray` <a name="toArray" id="@winglang/sdk.std.MutSet.toArray"></a>

```wing
toArray(): Array
```

Create an immutable array shallow copy of this set.


#### Properties <a name="Properties" id="Properties"></a>

Expand Down Expand Up @@ -2026,6 +2035,7 @@ Immutable Set.
| --- | --- |
| <code><a href="#@winglang/sdk.std.Set.copyMut">copyMut</a></code> | Create a mutable shallow copy of this set. |
| <code><a href="#@winglang/sdk.std.Set.has">has</a></code> | Returns a boolean indicating whether an element with the specified value exists in the set. |
| <code><a href="#@winglang/sdk.std.Set.toArray">toArray</a></code> | Create an immutable array shallow copy of this set. |

---

Expand Down Expand Up @@ -2053,6 +2063,14 @@ The value to test for presence in the Set object.

---

##### `toArray` <a name="toArray" id="@winglang/sdk.std.Set.toArray"></a>

```wing
toArray(): Array
```

Create an immutable array shallow copy of this set.


#### Properties <a name="Properties" id="Properties"></a>

Expand Down