Method: CompSci::Heap#peek

Defined in:
lib/compsci/heap.rb

#peekObject

  • return what pop would return (avoid sifting)



58
59
60
# File 'lib/compsci/heap.rb', line 58

def peek
  @array.first
end