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
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ let set = new QuickSet()
36
36
37
37
```
38
38
39
-
This instantiates a new set with [default parameters](https://github.com/dleeftink/QuickSet/tree/main/docs/config.md#new-quickset-config) and a top-k window of `0`length, which may need additional configuring to suit your needs. As a rule of thumb:
39
+
This instantiates a new set with [default parameters](https://github.com/dleeftink/QuickSet/tree/main/docs/config.md#new-quickset-config) and a top-k window of 0-length, which may need additional configuring to suit your needs. As a rule of thumb:
40
40
41
41
1. If you are interested in using unweighted set operations only, use [`add`](https://github.com/dleeftink/QuickSet/tree/main/docs/config.md#add-uint-value) or [`put`](https://github.com/dleeftink/QuickSet/tree/main/docs/config.md#put-uint-value) for single and [`unique`](https://github.com/dleeftink/QuickSet/tree/main/docs/config.md#unique-uints) for bulk insertions.
42
42
2. If you want to assign weights to integers, use [`sum`](https://github.com/dleeftink/QuickSet/tree/main/docs/config.md#sum-uint-value) for single and [`batch`](https://github.com/dleeftink/QuickSet/tree/main/docs/config.md#batch-uints-values) for bulk insertions.
0 commit comments