Method: NewRelic::Agent::Heap#pop

Defined in:
lib/new_relic/agent/heap.rb

#popObject

[View source]

68
69
70
71
72
73
# File 'lib/new_relic/agent/heap.rb', line 68

def pop
  swap(0, size - 1)
  item = @items.pop
  heapify_down(0)
  item
end