1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-19 04:51:26 +02:00

update doc

This commit is contained in:
Justin Lin
2021-03-09 16:50:21 +08:00
parent 47b381c3dc
commit e56ba51fee

View File

@@ -12,7 +12,7 @@ This function models the mathematical set, backed by a hash table. You can use t
## Parameters
- `lt` : Constructs a new set containing the elements in the specified list.
- `lt` : Constructs a new set containing the elements in the specified list. It can be ignored if you want an empty set.
- `eq` : A equality function. If it's ignored, use `==` to compare elements.
- `hash` : A hash function. If it's ignored, convert each element to a string and hash it.
- `number_of_buckets` : The function uses a hash table internally. Change the number of buckets if you're trying to do optimization.