| ChunkyList |
A List backed by a chain of fixed-size arrays (Chunks), also known
as an unrolled linked list.
|
| ChunkyList.GrowingStrategy |
Strategy used when inserting an element into a full chunk.
|
| ChunkyList.ShrinkingStrategy |
Strategy used after removing an element from a chunk.
|
| MultiMap |
A recursive multi-dimensional map.
|
| SymmetricMap |
A bijective map where both keys and values are unique.
|
| SynchronizedChunkyList |
|
| SynchronizedSymmetricMap |
|
| TreeList |
A sorted list that contains no duplicate elements, backed by a red-black tree.
|
| UnsynchronizedChunkyList |
An unrolled linked list implementation of ChunkyList,
backed by a chain of fixed-size arrays (Chunks).
|
| UnsynchronizedSymmetricMap |
A bijective map where both keys and values are unique, backed by a single
array of UnsynchronizedSymmetricMap.Buckets with two independent collision chains per bucket —
one indexed by key hash, one indexed by value hash.
|