Lines Matching refs:elements

38 | Read| entries() | Use **entries()** to return an iterator that contains all the elements in this …
39 …ey?: K, map?: HashMap<K, V>) => void, thisArg?: Object) | Traverses the elements of the entire map…
42 …, key?: K, map?: HashMap<K, V>) => void, thisArg?: Object) | Modify the elements of the entire map…
52elements can be sorted based on the sorting function specified by users. Both of them allow only u…
54 You are advised to use **HashSet** when you need a set that has only unique elements or need to ded…
62 | Read| entries() | Use **entries()** to return an iterator that contains all the elements in this …
63 …?: HashSet\<T>) => void, thisArg?: Object) | Traverses and accesses the elements of the entire set…
65 … T, key?: T, set?: HashSet\<T>) => void, thisArg?: Object) | Modify the elements of the entire set…
89 | Read| entries() | Use **entries()** to return an iterator that contains all the elements in this …
90 …ey?: K, map?: TreeMap<K, V>) => void, thisArg?: Object) | Traverses the elements of the entire map…
93 …, key?: K, map?: TreeMap<K, V>) => void, thisArg?: Object) | Modify the elements of the entire map…
105 …y unique elements. However, null values are allowed in **HashSet**, but not in **TreeSet**, becaus…
115 | Read| entries() | Use **entries()** to return an iterator that contains all the elements in this …
118 …?: TreeSet\<T>) => void, thisArg?: Object) | Traverses and accesses the elements of the entire set…
120 … T, key?: T, set?: TreeSet\<T>) => void, thisArg?: Object) | Modify the elements of the entire set…
144 | Read| entries() | Use **entries()** to return an iterator that contains all the elements in this …
147 … map?: LightWeightMap<K, V>) => void, thisArg?: Object) | Traverses the elements of the entire map…
150 … K, map?: LightWeightMap<K, V>) => void, thisArg?: Object) | Modify the elements of the entire map…
165 You are advised to use **LightWeightSet** when you need a set that has only unique elements or need…
175 | Read| entries() | Use **entries()** to return an iterator that contains all the elements in this …
176 …tWeightSet\<T>) => void, thisArg?: Object) | Traverses and accesses the elements of the entire set…
178 …?: T, set?: LightWeightSet\<T>) => void, thisArg?: Object) | Modify the elements of the entire set…
203 …PlainArray?: PlainArray\<T>) => void, thisArg?: Object) | Traverses the elements of the entire Pla…
206 …r, PlainArray?: PlainArray\<T>) => void, thisArg?: Object) | Modify the elements of the entire Pla…
209 | Delete| removeRangeFrom(index: number, size: number) | Deletes elements in a specified range from…
214 Refer to the code snippet below to add, access, and modify elements in **HashMap**, **TreeMap**, **…