# File lib/facets/more/pqueue.rb, line 278
  def each_pop #:yields: popped
    until empty?
      yield pop
    end
    return nil
  end