# File lib/dm-validations/support/ordered_hash.rb, line 348
    def dup
      a = []
      each{ |k,v| a << k; a << v }
      self.class[*a]
    end