# File lib/hashery/sparsearray.rb, line 570
  def values_at(*ix)
    nha = self.class.new
    ix.each {|i| nha[nha.length] = self.at(i)}
    nha
  end