Keeps an heap sorted with the smallest element on top

Methods
Public Class methods
new(array=[])
# File lib/facets/more/heap.rb, line 77
    def initialize(array=[]) super(array) end
Public Instance methods
cmp(a,b)
# File lib/facets/more/heap.rb, line 79
    def cmp(a,b) a < b end