HeapEntry

interface HeapEntry<out Element, out Priority>(source)

Represents a pair of an element and its (future) priority in the heap.

This interface is used to represent entries for a heap when the heap is being constructed.

Inheritors

Properties

Link copied to clipboard
abstract val element: Element

Returns the corresponding element of the entry.

Link copied to clipboard
abstract val priority: Priority

Returns the corresponding priority of the entry.