From e56ba51fee246ec33ffc2a8eb7472c4476717509 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Tue, 9 Mar 2021 16:50:21 +0800 Subject: [PATCH] update doc --- docs/lib3x-hashset.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/lib3x-hashset.md b/docs/lib3x-hashset.md index d101c2d7..d8f6f935 100644 --- a/docs/lib3x-hashset.md +++ b/docs/lib3x-hashset.md @@ -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.