| Package | Description |
|---|---|
| javolution.util |
| Class and Description |
|---|
| FastBitSet
This class represents either a table of bits or a set of non-negative
numbers.
|
| FastCollection
This class represents collections which can quickly be iterated over
(forward or backward) and which an be made
thread-safe
and/or unmodifiable. |
| FastCollection.Record
This interface represents the collection records which can directly be
iterated over.
|
| FastComparator |
| FastList
This class represents a linked list with real-time behavior;
smooth capacity increase and no memory allocation as long as the
list size does not exceed its initial capacity.
|
| FastList.Node |
| FastMap
This class represents a hash map with real-time behavior;
smooth capacity increase and thread-safe without external
synchronization when
shared. |
| FastMap.Entry
This class represents a
FastMap entry. |
| FastSet
This class represents a set collection backed by a
FastMap;
smooth capacity increase and no rehashing ever performed. |
| FastTable
This class represents a random access collection with real-time behavior
(smooth capacity increase).
|
| Index
This class represents a unique index which can be used instead of
java.lang.Integer for primitive data types collections. |
| LocalMap
This class represents a map which can be temporarily modified without
impacting other threads (
scoped changes). |
Copyright © 2005–2024 Javolution. All rights reserved.