BinaryHeap.removeFront

Removes the largest element from the heap.

struct BinaryHeap(alias less = "a < b", Store)
scope
void
removeFront
()
if (
isRandomAccessRange!Store ||
isRandomAccessRange!(typeof(Store.init[]))
)