# File lib/hashery/sparsearray.rb, line 206
  def concat(ha)
    (0...ha.length).each { |i| self.set(self.length,ha.fetch(i)) }
    self
  end