Readonly
sizeCount the amount of elements in the collection.
⚠️ In most cases, this should be an O(1)
operation. However, there are
cases where this can be an O(n)
operation. Therefore, it is recommended
to always cache the result in a local variable.
Returns an object which is able to sift through the values in this collection.
The order by which the elements are traversed depends on the kind of collection. For unordered collections, the iteration order is unspecified and may even differ between two iterations on the same collection.
Add an element to the collection. If the element already exists, update its value.
The location where the element is placed depends on the collection type, and in the generic case there is no guarantee on the location where it is inserted.
This method returns a pair with the first element indicating whether the element was added, while the second element refers to the actual location of the element.
Optional
hint: anyA transparent object obtained by getAddHint.
Copies all elements in the collection to a new one of the same kind.
Optional
getOptional
iterator
A list is a positional collection which can contain multiple elements of the same kind.
A list is characterized by low-cost insertion of elements, while referencing an element at a given position is generally slower.
Result: