Lines Matching refs:Read

30 **HashMap** provides the following Create, Read, Update, and Delete (CRUD) APIs.
35 | Read| get(key: K) | Value corresponding to the target key.|
36 | Read| keys() | Use **keys()** to return an iterator that contains all the keys in this container.|
37 | Read| values() | Use **values()** to return an iterator that contains all the values in this cont…
38 | Read| entries() | Use **entries()** to return an iterator that contains all the elements in this …
39 | Read| forEach(callbackFn: (value?: V, key?: K, map?: HashMap<K, V>) => void, thisArg?: Object) | …
40 | Read| \[Symbol.iterator]():IterableIterator&lt;[K,V]&gt; | Creates an iterator for data access.|
61 | Read| values() | Use **values()** to return an iterator that contains all the values in this cont…
62 | Read| entries() | Use **entries()** to return an iterator that contains all the elements in this …
63 | Read| forEach(callbackFn: (value?: T, key?: T, set?: HashSet\<T>) => void, thisArg?: Object) | Tr…
64 | Read| \[Symbol.iterator]():IterableIterator&lt;T&gt; | Creates an iterator for data access.|
84 | Read| get(key: K) | Value corresponding to the target key.|
85 | Read| getFirstKey() | Use **getFirstKey()** to obtain the first key in this container.|
86 | Read| getLastKey() | Use **getLastKey()** to obtain the last key in this container.|
87 | Read| keys() | Use **keys()** to return an iterator that contains all the keys in this container.|
88 | Read| values() | Use **values()** to return an iterator that contains all the values in this cont…
89 | Read| entries() | Use **entries()** to return an iterator that contains all the elements in this …
90 | Read| forEach(callbackFn: (value?: V, key?: K, map?: TreeMap<K, V>) => void, thisArg?: Object) | …
91 | Read| \[Symbol.iterator]():IterableIterator&lt;[K,V]&gt; | Creates an iterator for data access.|
114 | Read| values() | Use **values()** to return an iterator that contains all the values in this cont…
115 | Read| entries() | Use **entries()** to return an iterator that contains all the elements in this …
116 | Read| getFirstValue() | Use **getFirstValue()** to obtain the first value in this container.|
117 | Read| getLastValue() | Use **getLastValue()** to obtain the last value in this container.|
118 | Read| forEach(callbackFn: (value?: T, key?: T, set?: TreeSet\<T>) => void, thisArg?: Object) | Tr…
119 | Read| \[Symbol.iterator]():IterableIterator&lt;T&gt; | Creates an iterator for data access.|
139 | Read| get(key: K) | Value corresponding to the target key.|
140 | Read| getIndexOfKey(key: K) | Obtains the index of a specified key in a map.|
141 | Read| getIndexOfValue(value: V) | Obtains the first index of a specified value in a map.|
142 | Read| keys() | Use **keys()** to return an iterator that contains all the keys in this container.|
143 | Read| values() | Use **values()** to return an iterator that contains all the values in this cont…
144 | Read| entries() | Use **entries()** to return an iterator that contains all the elements in this …
145 | Read| getKeyAt(index: number) | Pointer to the function used to obtain the cookie value of a spec…
146 | Read| getValueAt(index: number) | Pointer to the function used to obtain the cookie value of a sp…
147 | Read| forEach(callbackFn: (value?: V, key?: K, map?: LightWeightMap<K, V>) => void, thisArg?: Obj…
148 | Read| \[Symbol.iterator]():IterableIterator&lt;[K,V]&gt; | Creates an iterator for data access.|
172 | Read| getIndexOf(key: T) | Key of the value to obtain.|
173 | Read| getValueAt(index: number) | Pointer to the function used to obtain the cookie value of a sp…
174 | Read| values() | Use **values()** to return an iterator that contains all the values in this cont…
175 | Read| entries() | Use **entries()** to return an iterator that contains all the elements in this …
176 | Read| forEach(callbackFn: (value?: T, key?: T, set?: LightWeightSet\<T>) => void, thisArg?: Objec…
177 | Read| \[Symbol.iterator]():IterableIterator&lt;T&gt; | Creates an iterator for data access.|
198 | Read| get(key: number) | Value corresponding to the target key.|
199 | Read| getIndexOfKey(key: number) | Obtains the index of a specified key in PlainArray.|
200 | Read| getIndexOfValue(value: T) | Obtains the first index of a specified value in a PlainArray.|
201 | Read| getKeyAt(index: number) | Pointer to the function used to obtain the cookie value of a spec…
202 | Read| getValueAt(index: number) | Pointer to the function used to obtain the cookie value of a sp…
203 | Read| forEach(callbackFn: (value: T, index?: number, PlainArray?: PlainArray\<T>) => void, thisAr…
204 | Read| \[Symbol.iterator]():IterableIterator&lt;[number, T]&gt; | Creates an iterator for data acc…