| Package | Description |
|---|---|
| com.alexkasko.unsafe.offheaplong |
Long sized off-heap collections of longs with sorting and searching support
|
| Modifier and Type | Class and Description |
|---|---|
class |
OffHeapLongArray
Implementation of array of long using
OffHeapMemory. |
class |
OffHeapLongArrayList
Implementation of array-list of long using
OffHeapMemory. |
| Modifier and Type | Field and Description |
|---|---|
private OffHeapLongAddressable |
OffHeapLongIterator.data |
| Modifier and Type | Method and Description |
|---|---|
private static void |
OffHeapLongSorter.doSort(OffHeapLongAddressable a,
long left,
long right)
Sorts the specified range of the off-heap collection into ascending order.
|
private static void |
OffHeapLongSorter.doSortWithComparator(OffHeapLongAddressable a,
long left,
long right,
OffHeapLongSorter.LongComp comp)
Sorts the specified range of the off-heap collection into ascending order.
|
private static void |
OffHeapLongSorter.dualPivotQuicksort(OffHeapLongAddressable a,
long left,
long right)
Sorts the specified range of the off-heap collection into ascending order by the
Dual-Pivot Quicksort algorithm.
|
private static void |
OffHeapLongSorter.dualPivotQuicksortWithComparator(OffHeapLongAddressable a,
long left,
long right,
OffHeapLongSorter.LongComp comp)
Sorts the specified range of the off-heap collection into ascending order by the
Dual-Pivot Quicksort algorithm.
|
static void |
OffHeapLongSorter.sort(OffHeapLongAddressable a)
Sorts the specified off-heap collection into ascending order.
|
static void |
OffHeapLongSorter.sort(OffHeapLongAddressable a,
long fromIndex,
long toIndex)
Sorts the specified range of the off-heap collection into ascending order.
|
static void |
OffHeapLongSorter.sort(OffHeapLongAddressable a,
long fromIndex,
long toIndex,
OffHeapLongComparator comp)
Sorts the specified range of the off-heap collection into ascending order.
|
static void |
OffHeapLongSorter.sort(OffHeapLongAddressable a,
OffHeapLongComparator comp)
Sorts the specified off-heap collection into ascending order.
|
| Constructor and Description |
|---|
OffHeapLongIterator(OffHeapLongAddressable data)
Constructor
|
Copyright © 2014. All Rights Reserved.