| Interface | Description |
|---|---|
| FloatList |
A Type Specific List interface that reduces boxing/unboxing and adds a couple extra quality of life features
|
| FloatListIterator |
A Type Specific ListIterator that reduces boxing/unboxing
|
| Class | Description |
|---|---|
| AbstractFloatList |
Abstract implementation of the
FloatList interface. |
| CopyOnWriteFloatArrayList |
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
ITrimmable, FloatStack
and with optimized functions that use type-specific implementations for primitives and optimized logic for bulkactions. |
| FloatArrayList |
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
IFloatArray, FloatStack
and with optimized functions that use type-specific implementations for primitives and optimized logic for bulkactions. |
| FloatLinkedList |
A Type-Specific LinkedList implementation of list that is written to reduce (un)boxing
This implementation is optimized to improve how data is processed with interfaces like
FloatStack
and with optimized functions that use type-specific implementations for primitives and optimized logic for bulk actions. |
| ImmutableFloatList |
A Type-Specific Immutable implementation of list that is written to reduce (un)boxing
|