| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.ints |
Provides type-specific classes for integer elements or keys.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractIntPriorityQueue
Deprecated.
As of fastutil 8 this class is no longer necessary, as its previous abstract
methods are now default methods of the type-specific interface.
|
class |
IntArrayFIFOQueue
A type-specific array-based FIFO queue, supporting also deque operations.
|
class |
IntArrayPriorityQueue
A type-specific array-based priority queue.
|
class |
IntHeapPriorityQueue
A type-specific heap-based priority queue.
|
static class |
IntPriorityQueues.SynchronizedPriorityQueue
A synchronized wrapper class for priority queues.
|
| Modifier and Type | Field and Description |
|---|---|
protected IntPriorityQueue |
IntPriorityQueues.SynchronizedPriorityQueue.q |
| Modifier and Type | Method and Description |
|---|---|
static IntPriorityQueue |
IntPriorityQueues.synchronize(IntPriorityQueue q)
Returns a synchronized type-specific priority queue backed by the specified type-specific priority queue.
|
static IntPriorityQueue |
IntPriorityQueues.synchronize(IntPriorityQueue q,
Object sync)
Returns a synchronized type-specific priority queue backed by the specified type-specific priority queue, using an assigned object to synchronize.
|
| Modifier and Type | Method and Description |
|---|---|
static IntPriorityQueue |
IntPriorityQueues.synchronize(IntPriorityQueue q)
Returns a synchronized type-specific priority queue backed by the specified type-specific priority queue.
|
static IntPriorityQueue |
IntPriorityQueues.synchronize(IntPriorityQueue q,
Object sync)
Returns a synchronized type-specific priority queue backed by the specified type-specific priority queue, using an assigned object to synchronize.
|
| Constructor and Description |
|---|
SynchronizedPriorityQueue(IntPriorityQueue q) |
SynchronizedPriorityQueue(IntPriorityQueue q,
Object sync) |
Copyright © 2020. All rights reserved.