Click or drag to resize
FibonacciHeapItemT Constructor
Constructs a new container for the passed item that can be inserted into a Fibonacci heap with the specified key for comparing it to other heap items for order.

Namespace: Slash.Collections.PriorityQueues
Assembly: Slash.Collections (in Slash.Collections.dll) Version: 1.0.6018.40177
Syntax
protected FibonacciHeapItem(
	T item,
	double key
)

Parameters

item
Type: T
Item held by the new container.
key
Type: SystemDouble
Key of the item which is used for comparing it to other heap items for order.
See Also