rc-js-util
Version:
A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.
131 lines (59 loc) • 1.39 kB
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) > [rc-js-util](./rc-js-util.md) > [\_Set](./rc-js-util._set.md)
## \_Set class
Utilities that apply to `Set`<!-- -->.
**Signature:**
```typescript
export declare class _Set
```
## Properties
<table><thead><tr><th>
Property
</th><th>
Modifiers
</th><th>
Type
</th><th>
Description
</th></tr></thead>
<tbody><tr><td>
[isSetEqual](./rc-js-util._set.issetequal.md)
</td><td>
`static`
`readonly`
</td><td>
typeof setIsSetEqual
</td><td>
returns items in A not in B.
</td></tr>
<tr><td>
[setDifference](./rc-js-util._set.setdifference.md)
</td><td>
`static`
`readonly`
</td><td>
typeof setSetDifference
</td><td>
returns items in A not in B.
</td></tr>
<tr><td>
[symmetricDifference](./rc-js-util._set.symmetricdifference.md)
</td><td>
`static`
`readonly`
</td><td>
typeof setSymmetricDifference
</td><td>
Returns those items in A not in B, and those items in B not in A.
</td></tr>
<tr><td>
[valuesToArray](./rc-js-util._set.valuestoarray.md)
</td><td>
`static`
`readonly`
</td><td>
typeof setValuesToArray
</td><td>
Converts a set into an array of its values.
</td></tr>
</tbody></table>