Class ChunkList<E>

Type Parameters:
E - element type
All Implemented Interfaces:
Iterable<E>, Collection<E>, List<E>

public class ChunkList<E> extends AbstractSequentialList<E>
Implementation of list similar to LinkedList, but stores elements in chunks of 32 elements.

ArrayList has O(n) insertion and deletion into the middle of the list. ChunkList insertion and deletion are O(1).