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