# File lib/facet/heap.rb, line 92 def initialize(array) @array, @heap_size = array, array.length (@heap_size/2 - 1).downto(0) { |i| heapify(i) } end