 | IPriorityQueueItemT Interface |
Container for an item that can be inserted into a priority queue.
Provides a key for comparing it to other items for order.
Namespace: Slash.Collections.PriorityQueuesAssembly: Slash.Collections (in Slash.Collections.dll) Version: 1.0.6018.40177
Syntaxpublic interface IPriorityQueueItem<out T>
Public Interface IPriorityQueueItem(Of Out T)
generic<typename T>
public interface class IPriorityQueueItem
type IPriorityQueueItem<'T> = interface end
Type Parameters
- T
- Type of the item held by this container.
The IPriorityQueueItemT type exposes the following members.
Properties
| Name | Description |
---|
 | Item |
Item held by this container.
|
 | Key |
Key of the item which is used for comparing it to other
items for order.
|
Top
See Also