IArrayList
Short summary
Interface for the ArrayList, a specialisation of the List. Array Lists consist of a Array of Dynamic size (Pointer). They are very performant for index operations, giving you O(1) access to objects. The size of a ArrayList is defined by the index of the last element. Avoid using them if indexing is not required.
| Access | Abstract | Final | Extends | Implements |
|---|---|---|---|---|
| - | No | No | IList, IIndexable | - |
UML Diagram
Methods
setSorter
- Parameters:
sorter(IArrayListSorter): The instance of the sorter to be used to sort the list
- Return type: ISortable
This method can replace the default sorter with a custom one. Check :ref:IListSorter…
Code
Declaration
INTERFACE IArrayList EXTENDS IList, IIndexable