# File lib/ramaze/snippets/ramaze/dictionary.rb, line 286
    def invert
      hsh2 = self.class.new
      order.each { |k| hsh2[@hash[k]] = k }
      hsh2
    end