Package | Description |
---|---|
javolution.util |
Modifier and Type | Method and Description |
---|---|
static <E> FastTable<E> |
FastTable.newInstance()
Returns a new, preallocated or
recycled table instance
(on the stack when executing in a StackContext ). |
FastTable<E> |
FastTable.setValueComparator(FastComparator<? super E> comparator)
Sets the comparator to use for value equality or comparison if the
collection is ordered (see
sort() ). |
FastTable<E> |
FastTable.sort()
Sorts this table in place (quick sort) using this table
value comparator
(smallest first). |
Modifier and Type | Method and Description |
---|---|
static void |
FastTable.recycle(FastTable instance)
Recycles a table
instance immediately
(on the stack when executing in a StackContext ). |
Copyright © 2005–2018 Javolution. All rights reserved.