 | IPriorityQueueTDecreaseKey Method |
Decreases the key of the specified item in this priority queue by subtracting
the passed non-negative real number delta.
Namespace: Slash.Collections.PriorityQueuesAssembly: Slash.Collections (in Slash.Collections.dll) Version: 1.0.6018.40177
Syntaxvoid DecreaseKey(
IPriorityQueueItem<T> item,
double delta
)
Sub DecreaseKey (
item As IPriorityQueueItem(Of T),
delta As Double
)
void DecreaseKey(
IPriorityQueueItem<T>^ item,
double delta
)
abstract DecreaseKey :
item : IPriorityQueueItem<'T> *
delta : float -> unit
Parameters
- item
- Type: Slash.Collections.PriorityQueuesIPriorityQueueItemT
Item to decrease the key of. - delta
- Type: SystemDouble
Non-negative real number to be subtracted from the item's key.
Exceptions
See Also