| Interface | Description |
|---|---|
| IntList |
A Type Specific List interface that reduces boxing/unboxing and adds a couple extra quality of life features
|
| IntListIterator |
A Type Specific ListIterator that reduces boxing/unboxing
|
| Class | Description |
|---|---|
| AbstractIntList |
Abstract implementation of the
IntList interface. |
| IntArrayList |
A Type-Specific Array-based implementation of list that is written to reduce (un)boxing
This implementation is optimized to improve how data is processed with interfaces like
IIntArray, IntStack
and with optimized functions that use type-specific implementations for primitives and optimized logic for bulkactions. |