Lines Matching refs:unique
10 …s that have association relationships. The key in the storage element is unique, and the storage l…
11 | HashSet | A set of values. Each value in a storage element is unique. The storage location is det…
12 …s that have association relationships. The key in the storage element is unique. You can customize…
13 | TreeSet | A set of values. The values in the storage element are unique. You can customize the so…
14 …s that have association relationships. The key in the storage element is unique. The bottom layer …
15 …ement are unique. The bottom layer uses a more lightweight structure and occupies less space. This…
16 …s that have association relationships. The key in the storage element is unique. The bottom layer …
20 …ore a set of associated key-value (KV) pairs. In a hash map, each key is unique and corresponds to…
48 …-arkts/js-apis-hashset.md) is used to store a set of values, each of which is unique in a hash set.
52 …ased on the sorting function specified by users. Both of them allow only unique elements. However,…
54 You are advised to use **HashSet** when you need a set that has only unique elements or need to ded…
71 …s used to store a set of associated KV pairs. In a tree map, each key is unique and corresponds to…
99 …-arkts/js-apis-treeset.md) is used to store a set of values, each of which is unique in a tree set.
103 …TreeSet can be used to store a set of values. The value in an element is unique and can be sorted …
105 …whereas **TreeSet** stores data in sorted order. Both of them allow only unique elements. However,…
126 …to store a set of associated KV pairs. In a lightweight map, each key is unique and corresponds to…
157 …is-lightweightset.md) is used to store a set of values, each of which is unique in a lightweight s…
165 You are advised to use **LightWeightSet** when you need a set that has only unique elements or need…
185 …sed to store a set of associated KV pairs. In a plain array, each key is unique, corresponds to a …