Class LowGarbageArrayList<E>

All Implemented Interfaces:
Serializable, Cloneable, Iterable<E>, Collection<E>, List<E>, RandomAccess

public class LowGarbageArrayList<E> extends ArrayList<E>
This is a special version of ArrayList that can be substituted for a regular Array list but produces no garbage. It only has one iterator, which is reused. It is not thread safe.
See Also: