BinaryHeap.front

Returns a front of the heap, which is the largest element according to less.

struct BinaryHeap(alias less = "a < b", Store)
@property ref scope return
ElementType!Store
front
()
if (
isRandomAccessRange!Store ||
isRandomAccessRange!(typeof(Store.init[]))
)

Meta