BinaryHeap.removeFront

Removes the largest element from the heap.

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

Meta