# File basiclibrary.rb, line 128
  def swapkey!(newkey,oldkey)
    self[newkey]=self.delete(oldkey) if self.has_key?(oldkey)
    self
  end