# File lib/facet/heap.rb, line 204
  def swap(i,j)
    @array[i], @array[j] = @array[j], @array[i]
  end