# File lib/facet/harray.rb, line 526
  def values_at(*ix)
    nha = HArray.new
    ix.each {|i| nha[nha.length] = self.at(i)}
    nha
  end