# File lib/ramaze/snippets/ramaze/dictionary.rb, line 202
    def ==( hsh2 )
      if hsh2.is_a?( Dictionary )
        @order == hsh2.order &&
          @hash  == hsh2.instance_variable_get("@hash")
      else
        false
      end
    end