1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-19 13:01:37 +02:00

update doc

This commit is contained in:
Justin Lin
2021-03-05 20:11:14 +08:00
parent f910849b07
commit 00ee726667
2 changed files with 2 additions and 2 deletions

View File

@@ -7,8 +7,8 @@ Eliminating duplicate copies of repeating vectors. If `lt` has a large number of
## Parameters
- `lt` : A list of vectors.
- `sorted` : If `false` (default), use native `search`. If `true`, `lt` must be sorted by zyx (from the last index to the first one) and `dedup` will use binary search internally.
- `eq` : A equality function. If it's ignored, use `==` to compare elements. **Since: ** 3.0
- `hash` : A hash function. If it's ignored, convert each element to a string and hash it. **Since: ** 3.0
## Examples