| Package | Description |
|---|---|
| javolution.util |
High-performance collection classes with
worst case execution time behavior documented. |
| Modifier and Type | Class and Description |
|---|---|
class |
ConstantTable<E>
A table for which immutability is guaranteed by construction.
|
class |
FastSortedTable<E>
A high-performance sorted table with
real-time behavior. |
| Modifier and Type | Method and Description |
|---|---|
FastTable<E> |
FastTable.atomic() |
static FastTable<Index> |
Index.listOf(int... values)
Returns the indices having the specified
int non-negative
values (convenience method). |
<R> FastTable<R> |
FastTable.mapped(Function<? super E,? extends R> function) |
static <E> FastTable<E> |
FastTable.of(Collection<? extends E> that)
Returns a new table holding the same elements as the specified
collection (convenience method).
|
static <E> FastTable<E> |
FastTable.of(E... elements)
Returns a new table holding the same elements as the specified
array (convenience method).
|
FastTable<E> |
FastTable.reversed() |
FastTable<E> |
FastTable.shared() |
FastTable<E> |
FastTable.subList(int fromIndex,
int toIndex)
Deprecated.
|
FastTable<E> |
FastTable.subTable(int fromIndex,
int toIndex)
Returns a view over a portion of the table (equivalent to
List.subList(int, int)). |
FastTable<E> |
FastTable.unmodifiable() |
Copyright © 2017. All rights reserved.