| Interface | Description |
|---|---|
| FloatNavigableSet |
A Type Specific Navigable Set interface with a couple helper methods
|
| FloatOrderedSet |
A Special Set Interface giving Access to some really usefull functions
The Idea behind this interface is to allow access to functions that give control to the Order of elements.
|
| FloatSet |
A Type Specific Set class to reduce boxing/unboxing
|
| FloatSortedSet |
A Type Specific SortedSet implementation to reduce boxing/unboxing
with a couple extra methods that allow greater control over sets.
|
| Class | Description |
|---|---|
| AbstractFloatSet |
Abstract Type Specific Set that reduces boxing/unboxing
|
| FloatArraySet |
A Type Specific ArraySet implementation.
|
| FloatAVLTreeSet |
A Simple Type Specific AVL TreeSet implementation that reduces boxing/unboxing.
|
| FloatLinkedOpenCustomHashSet |
A Type Specific LinkedHashSet that allows for custom HashControl.
|
| FloatLinkedOpenHashSet |
A Type Specific LinkedHashMap implementation that uses specific arrays to create links between nodes to remove the wrapping of elements
to greatly reduce memory usage.
|
| FloatOpenCustomHashSet |
A Type Specific HashSet that allows for custom HashControl.
|
| FloatOpenHashSet |
A Type Specific Custom implementation of the HashSet
Instead of using Wrapper Object Arrays for storing keys and values there is dedicated arrays for storing keys.
|
| FloatRBTreeSet |
A Simple Type Specific RB TreeSet implementation that reduces boxing/unboxing.
|
| ImmutableFloatOpenHashSet |
A Type Specific Custom implementation of the HashSet
Instead of using Wrapper Object Arrays for storing keys and values there is dedicated arrays for storing keys.
|