Lines Matching refs:pairs

10 | HashMap | Stores a set of key-value pairs that have association relationships. The key in the sto…
12pairs that have association relationships. The key in the storage element is unique. You can custo…
14 | LightWeightMap | Stores a set of key-value pairs that have association relationships. The key in …
16pairs that have association relationships. The key in the storage element is unique. The bottom la…
20 …s/js-apis-hashmap.md) is used to store a set of associated key-value (KV) pairs. In a hash map, ea…
28 You are advised to use **HashMap** when you need to quickly access, remove, and insert KV pairs.
71 [TreeMap](../reference/apis-arkts/js-apis-treemap.md) is used to store a set of associated KV pairs
73 … layer of **TreeMap** is a binary tree, which supports quick search of KV pairs through the childr…
77 You are advised to use **TreeMap** when you need to store KV pairs in sorted order.
126 …-arkts/js-apis-lightweightmap.md) is used to store a set of associated KV pairs. In a lightweight …
130 Compared with [HashMap](../reference/apis-arkts/js-apis-hashmap.md), which can also store KV pairs,…
132 You are advised to use **LightWeightMap** when you need to store and access **KV pairs**.
185 …apis-arkts/js-apis-plainarray.md) is used to store a set of associated KV pairs. In a plain array,…
189 …](../reference/apis-arkts/js-apis-lightweightmap.md) are used to store KV pairs in the lightweight…
191 You are advised to use PlainArray when you need to store KV pairs whose keys are of the number type.