Skip to main content

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.

AccessAbstractFinalExtendsImplements
-NoNoIList, IIndexable-

UML Diagram

Methods

setSorter

This method can replace the default sorter with a custom one. Check :ref:IListSorter

Code

Declaration

INTERFACE IArrayList EXTENDS IList, IIndexable