# File lib/extlib/dictionary.rb, line 348
  def dup
    a = []
    each{ |k,v| a << k; a << v }
    self.class[*a]
  end