| Package | Description |
|---|---|
| javolution.util |
High-performance collection classes with
worst case execution time behavior documented. |
| Modifier and Type | Class and Description |
|---|---|
class |
FastBitSet
A high-performance bitset integrated with the collection framework as
a set of
indices and obeying the collection semantic
for methods such as size() (cardinality) or FastCollection.equals(java.lang.Object)
(same set of indices). |
class |
FastSortedSet<E>
A high-performance sorted set with
real-time behavior. |
| Modifier and Type | Method and Description |
|---|---|
FastSet<E> |
FastSet.atomic() |
FastSet<Map.Entry<K,V>> |
FastMap.entrySet()
Returns a set view of the mappings contained in
this map.
|
FastSet<E> |
FastSet.filtered(Predicate<? super E> filter) |
FastSet<K> |
FastMap.keySet()
Returns a set view of the keys contained in this map.
|
static <E> FastSet<E> |
FastSet.of(Collection<? extends E> that)
Returns a new set holding the same elements as the specified
collection (convenience method).
|
static <E> FastSet<E> |
FastSet.of(E... elements)
Returns a new set holding the specified elements
(convenience method).
|
FastSet<E> |
FastSet.shared() |
FastSet<E> |
FastSet.unmodifiable() |
Copyright © 2017. All rights reserved.